File size: 2,045 Bytes
c3bcf7e 267ddb2 c3bcf7e 267ddb2 c3bcf7e 267ddb2 5d9d5ac c3bcf7e 267ddb2 c3bcf7e 267ddb2 c3bcf7e 267ddb2 c3bcf7e 267ddb2 c3bcf7e 267ddb2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Reachy Mini Clock</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="background-accent"></div>
<header class="hero container">
<div class="badge">Reachy Mini</div>
<h1>Reachy Mini Clock</h1>
<p class="lead">Use Reachy Mini as a clock! The right antenna shows hours and the left antenna minutes.</p>
<div class="hero-pills">
<span class="pill">Right antenna = hours</span>
<span class="pill">Left antenna = minutes</span>
<span class="pill">Hands-free, room-friendly timekeeping</span>
</div>
</header>
<main class="container grid">
<section class="panel info">
<h2>How it works</h2>
<ul class="steps">
<li>
<span class="step-number">1</span>
<div>
<h3>Launch the app</h3>
<p>Wake up Reachy Mini and start the clock app from your dashboard.</p>
</div>
</li>
<li>
<span class="step-number">2</span>
<div>
<h3>Pick your timezone</h3>
<p>Use the app's GUI to select your timezone and save it!</p>
</div>
</li>
<li>
<span class="step-number">3</span>
<div>
<h3>Read the antennas</h3>
<p>Glance at Reachy: the right antenna points to the hour while the left sweeps the minutes.</p>
</div>
</li>
</ul>
</section>
<section class="panel visual">
<div class="placeholder">
<div class="placeholder-tag">Preview</div>
<img src="reachy_mini_clock/assets/clock.gif" alt="Reachy Mini clock animation" class="clock-gif" />
<p class="placeholder-caption">Live preview of Reachy Mini showing the time with its antennas.</p>
</div>
</section>
</main>
<footer class="footer">
<p>
🤖 Reachy Mini Clock •
<a href="https://github.com/pollen-robotics" target="_blank">Pollen Robotics</a> •
<a href="https://huggingface.co/spaces/pollen-robotics/Reachy_Mini_Apps" target="_blank">Browse more apps</a>
</p>
</footer>
</body>
</html>
|