reachy_phone_home / index.html
itsMarco-G's picture
Remove hero image from Space page
44ac553
raw
history blame
1.95 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Reachy Phone Home</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="page">
<header class="hero">
<div class="badge">Reachy Mini App</div>
<h1>Reachy Phone Home</h1>
</header>
<section class="grid">
<div class="card">
<h2>Phone Watch, Not Phone Scroll</h2>
<p>
Reachy keeps an eye on your phone like a tiny librarian. Phone in place? Reachy
beams. Phone in hand? Reachy notices.
</p>
</div>
<div class="card">
<h2>Put It Right Here</h2>
<p>
Pop your phone in front of Reachy. That spot is “home.” When the phone’s home,
focus mode is on. When it wanders, Reachy politely asks for its return.
</p>
</div>
<div class="card">
<h2>Gentle Accountability</h2>
<p>
Think of Reachy as your desk buddy. He doesn’t judge — he just keeps you on track
with a little robotic side-eye.
</p>
</div>
</section>
<section class="instructions">
<h2>Quick Start</h2>
<ol>
<li>Place your phone in front of Reachy within view of the camera.</li>
<li>Run the tracker script below on the robot or your local machine.</li>
<li>Reachy will track the phone, respond to phone use, and prompt if the phone is missing.</li>
</ol>
<div class="cta">
<span>Run locally:</span>
<code>python reachy_phone_home_app.py</code>
</div>
<p class="note">
The Ultralytics YOLO26 model for phone and person detection is downloaded automatically on first run.
</p>
</section>
</main>
</body>
</html>