jrubiosainz commited on
Commit
87057fb
Β·
verified Β·
1 Parent(s): f386794

fix: personalized landing page

Browse files
Files changed (1) hide show
  1. index.html +40 -34
index.html CHANGED
@@ -1,40 +1,46 @@
1
  <!doctype html>
2
  <html>
3
-
4
  <head>
5
- <meta charset="utf-8" />
6
- <meta name="viewport" content="width=device-width" />
7
- <title> Gesture Mirror </title>
8
- <link rel="stylesheet" href="style.css" />
9
  </head>
10
-
11
  <body>
12
- <div class="hero">
13
- <div class="hero-content">
14
- <div class="app-icon">πŸ€–βš‘</div>
15
- <h1> Gesture Mirror </h1>
16
- <p class="tagline">Enter your tagline here</p>
17
- </div>
18
- </div>
19
-
20
- <div class="container">
21
- <div class="main-card">
22
- <div class="app-preview">
23
- <div class="preview-image">
24
- <div class="camera-feed">πŸ› οΈ</div>
25
- </div>
26
- </div>
27
- </div>
28
- </div>
29
-
30
- <div class="footer">
31
- <p>
32
- πŸ€– Gesture Mirror β€’
33
- <a href="https://github.com/pollen-robotics" target="_blank">Pollen Robotics</a> β€’
34
- <a href="https://huggingface.co/spaces/pollen-robotics/reachy-mini-landing-page#apps" target="_blank">Browse More
35
- Apps</a>
36
- </p>
37
- </div>
 
 
 
 
 
 
 
 
 
38
  </body>
39
-
40
- </html>
 
1
  <!doctype html>
2
  <html>
 
3
  <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width" />
6
+ <title>Gesture Mirror</title>
7
+ <link rel="stylesheet" href="style.css" />
8
  </head>
 
9
  <body>
10
+ <div class="hero">
11
+ <div class="hero-content">
12
+ <div class="app-icon">πŸ–οΈπŸ€–</div>
13
+ <h1>Gesture Mirror</h1>
14
+ <p class="tagline">Wave, point, thumbs up β€” your robot mirrors your gestures</p>
15
+ </div>
16
+ </div>
17
+ <div class="container">
18
+ <div class="main-card">
19
+ <div class="app-preview">
20
+ <div class="preview-image">
21
+ <div class="camera-feed">πŸ‘‹ β†’ πŸ€–πŸ’ƒ</div>
22
+ </div>
23
+ </div>
24
+ <div class="app-details">
25
+ <h2>Features</h2>
26
+ <div class="template-info">
27
+ <div class="info-box"><h3>⚑ Core</h3><p>6 gestures recognized: wave, thumbs up, point, peace, fist, open palm</p></div>
28
+ <div class="info-box"><h3>🧠 Smart</h3><p>Each gesture triggers a unique robot reaction with full body movement</p></div>
29
+ <div class="info-box"><h3>πŸ”§ Technical</h3><p>MediaPipe Hands with confidence thresholds and cooldown system</p></div>
30
+ </div>
31
+ <div class="how-to-use">
32
+ <h3>How to Install</h3>
33
+ <div class="steps">
34
+ <div class="step"><div class="step-number">1</div><div><h4>From Dashboard</h4><p>Open your Reachy Mini dashboard and search for "Gesture Mirror"</p></div></div>
35
+ <div class="step"><div class="step-number">2</div><div><h4>One-Click Install</h4><p>Click Install β€” dependencies are handled automatically</p></div></div>
36
+ <div class="step"><div class="step-number">3</div><div><h4>Start Playing</h4><p>Launch the app and watch your robot come alive!</p></div></div>
37
+ </div>
38
+ </div>
39
+ </div>
40
+ </div>
41
+ </div>
42
+ <div class="footer">
43
+ <p>πŸ–οΈπŸ€– Gesture Mirror Β· by <a href="https://huggingface.co/jrubiosainz">jrubiosainz</a> Β· <a href="https://huggingface.co/reachy-mini#/apps">Browse More Apps</a></p>
44
+ </div>
45
  </body>
46
+ </html>