File size: 3,789 Bytes
569067e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f27cd5e
 
 
 
569067e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Wake Me Up - Reachy Mini</title>
  <meta name="description" content="Your first app with Reachy Mini - Test all the robot's features in simple steps.">
  <link rel="stylesheet" href="style.css">
</head>
<body>

  <!-- Hero Section -->
  <section class="hero">
    <div class="container">
      <div class="hero-grid">
        <div>
          <video class="hero-video" autoplay loop muted playsinline>
            <source src="assets/touch_demo.mp4" type="video/mp4">
            <div class="hero-placeholder">🤖⚡</div>
          </video>
        </div>

        <div class="hero-content">
          <div class="hero-header">
            <div class="hero-icon">👋</div>
            <h1 class="hero-title">Wake Me Up</h1>
          </div>

          <div class="tags">
            <span class="tag">first app</span>
            <span class="tag">testing</span>
            <span class="tag">beginner-friendly</span>
          </div>

          <p class="hero-description">
            Welcome to your <b>first app with Reachy Mini</b>! This simple and friendly application helps you test all the robot's features in a few easy steps.
            <br><br>
            Test the microphone, motors, speaker, and camera to make sure everything works perfectly.
          </p>
        </div>
      </div>
    </div>
  </section>

  <!-- Technical Section -->
  <section class="technical">
    <div class="container">
      <div class="technical-grid">
        <div>
          <h2 class="section-title">How to install</h2>

          <ol class="install-steps">
            <li>
              <span>
                Make sure you already have the
                <a href="https://github.com/pollen-robotics/reachy-mini-desktop-app/releases/latest"
                   class="link-tertiary">dashboard</a>
                installed.
              </span>
            </li>
            <li>
              <span>Connect to your Reachy Mini using the dashboard.</span>
            </li>
            <li>
              <span>Navigate to the "Applications" tab in the dashboard.</span>
            </li>
            <li>
              <span>Find "Wake Me Up" in the list of available applications.</span>
            </li>
            <li>
              <span>Click "Install" and the app will be ready to use!</span>
            </li>
          </ol>
        </div>

        <div>
          <video class="hero-video" autoplay loop muted playsinline>
            <source src="assets/wake_me_up.mp4" type="video/mp4">
            <div class="demo-placeholder">Video coming soon</div>
          </video>
        </div>
      </div>
    </div>
  </section>

  <!-- Footer -->
  <footer class="footer">
    <div class="container">
      <div class="footer-content">
        <div class="footer-links">
          <a href="https://github.com/pollen-robotics/reachy_mini" target="_blank" rel="noopener">> Documentation</a>
          <a href="https://huggingface.co/spaces/pollen-robotics/Reachy-Mini_Best_Spaces" target="_blank" rel="noopener">> Browse other apps</a>
          <a href="https://huggingface.co/blog/pollen-robotics/make-and-publish-your-reachy-mini-apps" target="_blank" rel="noopener">> Create your own app</a>
        </div>
        <p class="footer-help">
          Need help? Contact us on <a href="https://discord.gg/u3QtUBhy" target="_blank" rel="noopener">Discord</a> and join the community.
          Proudly brought by <a href="https://www.pollen-robotics.com/" target="_blank">Pollen Robotics</a> x 🤗 <a href="https://huggingface.co" target="_blank">Hugging Face</a>
        </p>
      </div>
    </div>
  </footer>

</body>
</html>