gesture_mirror / index.html
jrubiosainz's picture
redesign: dark branded landing page
a34363b verified
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Gesture Mirror</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<nav>
<a href="#" class="nav-brand"><span class="dot"></span> jrubiosainz</a>
<div class="nav-links">
<a href="#features">Features</a>
<a href="#install">Install</a>
<a href="https://huggingface.co/reachy-mini#/apps">App Store</a>
</div>
</nav>
<section class="hero">
<div class="badge">Reachy Mini App</div>
<h1>πŸ–οΈ Gesture Mirror</h1>
<p class="tagline">Wave, point, thumbs up β€” your robot mirrors your hand gestures in real time.</p>
</section>
<div class="video-showcase">
<div class="video-frame">
<video autoplay loop muted playsinline>
<source src="demo.mp4" type="video/mp4">
</video>
</div>
<p class="video-label">MuJoCo simulator β€” 6 gestures, real-time reactions</p>
</div>
<section class="features" id="features">
<h2>Features</h2>
<p class="subtitle">What makes this app tick</p>
<div class="feature-grid">
<div class="feature-card">
<div class="icon">⚑</div>
<h3>6 Gestures</h3>
<p>Wave, thumbs up, point, peace sign, fist, and open palm β€” each recognized via MediaPipe Hands.</p>
</div>
<div class="feature-card">
<div class="icon">πŸ€–</div>
<h3>Unique Reactions</h3>
<p>Every gesture triggers a different full-body response: wave back, nod, look, bounce, shake, or calm reset.</p>
</div>
<div class="feature-card">
<div class="icon">🎯</div>
<h3>Smart Detection</h3>
<p>Confidence thresholds, gesture stability tracking, and per-gesture cooldowns prevent spam reactions.</p>
</div>
</div>
</section>
<section class="install" id="install">
<h2>Get Started</h2>
<div class="steps">
<div class="step">
<div class="step-num">1</div>
<div><h4>Open Dashboard</h4><p>Go to your Reachy Mini control dashboard and browse apps.</p></div>
</div>
<div class="step">
<div class="step-num">2</div>
<div><h4>Install</h4><p>Search for "Gesture Mirror" and click Install. Dependencies are handled automatically.</p></div>
</div>
<div class="step">
<div class="step-num">3</div>
<div><h4>Launch</h4><p>Start the app and watch your robot come alive.</p></div>
</div>
</div>
</section>
<footer>
πŸ–οΈ Gesture Mirror Β· Built by <a href="https://huggingface.co/jrubiosainz">jrubiosainz</a> Β· <a href="https://huggingface.co/reachy-mini#/apps">Browse More Apps</a>
</footer>
</body>
</html>