IamVicky111 commited on
Commit
def9a9b
·
verified ·
1 Parent(s): 3b96f9a

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +601 -0
index.html ADDED
@@ -0,0 +1,601 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="scroll-smooth">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Reachy Mini - Compact Robotic Arm</title>
7
+ <meta name="description" content="Reachy Mini - A compact, affordable robotic arm for education and research">
8
+
9
+ <!-- Tailwind CSS (via CDN for standalone usage) -->
10
+ <script src="https://cdn.tailwindcss.com"></script>
11
+
12
+ <!-- Lucide Icons -->
13
+ <script src="https://unpkg.com/lucide@latest"></script>
14
+
15
+ <!-- Tailwind Configuration -->
16
+ <script>
17
+ tailwind.config = {
18
+ theme: {
19
+ extend: {
20
+ colors: {
21
+ primary: {
22
+ 50: '#f0f9ff',
23
+ 100: '#e0f2fe',
24
+ 200: '#bae6fd',
25
+ 300: '#7dd3fc',
26
+ 400: '#38bdf8',
27
+ 500: '#0ea5e9',
28
+ 600: '#0284c7',
29
+ 700: '#0369a1',
30
+ 800: '#075985',
31
+ 900: '#0c4a6e',
32
+ },
33
+ accent: {
34
+ 500: '#22c55e',
35
+ 600: '#16a34a',
36
+ }
37
+ },
38
+ animation: {
39
+ 'float': 'float 6s ease-in-out infinite',
40
+ 'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
41
+ },
42
+ keyframes: {
43
+ float: {
44
+ '0%, 100%': { transform: 'translateY(0px)' },
45
+ '50%': { transform: 'translateY(-20px)' },
46
+ }
47
+ }
48
+ },
49
+ },
50
+ }
51
+ </script>
52
+
53
+ <!-- Custom CSS Styles -->
54
+ <style>
55
+ @layer base {
56
+ body {
57
+ @apply bg-gray-900 text-white antialiased;
58
+ }
59
+ }
60
+
61
+ @layer utilities {
62
+ .text-gradient {
63
+ @apply bg-gradient-to-r from-primary-400 to-accent-500 bg-clip-text text-transparent;
64
+ }
65
+ }
66
+ </style>
67
+ </head>
68
+ <body class="relative">
69
+
70
+ <!-- HEADER -->
71
+ <header class="fixed top-0 left-0 right-0 z-50 bg-gray-900/80 backdrop-blur-lg border-b border-gray-800">
72
+ <nav class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
73
+ <div class="flex items-center justify-between h-16">
74
+ <!-- Logo -->
75
+ <a href="#" class="flex items-center space-x-2">
76
+ <div class="w-10 h-10 bg-gradient-to-br from-primary-500 to-accent-500 rounded-lg flex items-center justify-center">
77
+ <span class="text-white font-bold text-xl">R</span>
78
+ </div>
79
+ <span class="text-xl font-bold">Reachy Mini</span>
80
+ </a>
81
+
82
+ <!-- Desktop Navigation -->
83
+ <div class="hidden md:flex items-center space-x-8">
84
+ <a href="#features" class="text-gray-300 hover:text-white transition-colors duration-200">Features</a>
85
+ <a href="#specs" class="text-gray-300 hover:text-white transition-colors duration-200">Specifications</a>
86
+ <a href="#applications" class="text-gray-300 hover:text-white transition-colors duration-200">Applications</a>
87
+ <a href="#docs" class="text-gray-300 hover:text-white transition-colors duration-200">Documentation</a>
88
+
89
+ <a
90
+ href="https://huggingface.co/spaces/akhaliq/anycoder"
91
+ target="_blank"
92
+ rel="noopener noreferrer"
93
+ class="text-sm text-primary-400 hover:text-primary-300 transition-colors"
94
+ >
95
+ Built with anycoder
96
+ </a>
97
+ </div>
98
+
99
+ <!-- Mobile menu button -->
100
+ <button
101
+ id="mobile-menu-btn"
102
+ class="md:hidden p-2 rounded-lg text-gray-400 hover:text-white hover:bg-gray-800"
103
+ aria-label="Toggle menu"
104
+ >
105
+ <i data-lucide="menu" class="w-6 h-6"></i>
106
+ </button>
107
+ </div>
108
+
109
+ <!-- Mobile Navigation (Hidden by default) -->
110
+ <div id="mobile-menu" class="hidden md:hidden py-4 border-t border-gray-800">
111
+ <a href="#features" class="block py-2 text-gray-300 hover:text-white transition-colors">Features</a>
112
+ <a href="#specs" class="block py-2 text-gray-300 hover:text-white transition-colors">Specifications</a>
113
+ <a href="#applications" class="block py-2 text-gray-300 hover:text-white transition-colors">Applications</a>
114
+ <a href="#docs" class="block py-2 text-gray-300 hover:text-white transition-colors">Documentation</a>
115
+ <a
116
+ href="https://huggingface.co/spaces/akhaliq/anycoder"
117
+ target="_blank"
118
+ rel="noopener noreferrer"
119
+ class="block py-2 text-primary-400 hover:text-primary-300 transition-colors"
120
+ >
121
+ Built with anycoder
122
+ </a>
123
+ </div>
124
+ </nav>
125
+ </header>
126
+
127
+ <main>
128
+ <!-- HERO SECTION -->
129
+ <section class="relative min-h-screen flex items-center justify-center overflow-hidden pt-16">
130
+ <!-- Background gradient -->
131
+ <div class="absolute inset-0 bg-gradient-to-br from-gray-900 via-gray-800 to-gray-900" />
132
+ <div class="absolute inset-0 bg-[radial-gradient(ellipse_at_top,_var(--tw-gradient-stops))] from-primary-900/20 via-transparent to-transparent" />
133
+
134
+ <!-- Animated circles -->
135
+ <div class="absolute top-1/4 left-1/4 w-96 h-96 bg-primary-500/10 rounded-full blur-3xl animate-pulse-slow" />
136
+ <div class="absolute bottom-1/4 right-1/4 w-96 h-96 bg-accent-500/10 rounded-full blur-3xl animate-pulse-slow" />
137
+
138
+ <div class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
139
+ <div class="grid lg:grid-cols-2 gap-12 items-center">
140
+ <!-- Left content -->
141
+ <div class="space-y-8">
142
+ <div class="inline-flex items-center space-x-2 bg-gray-800/50 border border-gray-700 rounded-full px-4 py-2">
143
+ <i data-lucide="sparkles" class="w-4 h-4 text-accent-500"></i>
144
+ <span class="text-sm text-gray-300">Next-Gen Robotics</span>
145
+ </div>
146
+
147
+ <h1 class="text-5xl sm:text-6xl lg:text-7xl font-bold leading-tight">
148
+ <span class="text-gradient">Reachy Mini</span>
149
+ <br />
150
+ <span class="text-white">Robotic Arm</span>
151
+ </h1>
152
+
153
+ <p class="text-xl text-gray-400 max-w-lg">
154
+ A compact, affordable, and open-source robotic arm designed for education, research, and prototyping. Build the future with Reachy Mini.
155
+ </p>
156
+
157
+ <div class="flex flex-col sm:flex-row gap-4">
158
+ <button class="group bg-gradient-to-r from-primary-500 to-accent-500 text-white px-8 py-4 rounded-xl font-semibold hover:shadow-lg hover:shadow-primary-500/25 transition-all duration-300 flex items-center justify-center space-x-2">
159
+ <span>Get Started</span>
160
+ <i data-lucide="arrow-right" class="w-5 h-5 group-hover:translate-x-1 transition-transform"></i>
161
+ </button>
162
+
163
+ <button class="bg-gray-800 border border-gray-700 text-white px-8 py-4 rounded-xl font-semibold hover:bg-gray-700 transition-all duration-300 flex items-center justify-center space-x-2">
164
+ <i data-lucide="play" class="w-5 h-5"></i>
165
+ <span>Watch Demo</span>
166
+ </button>
167
+ </div>
168
+
169
+ <!-- Stats -->
170
+ <div class="grid grid-cols-3 gap-8 pt-8 border-t border-gray-800">
171
+ <div>
172
+ <div class="text-3xl font-bold text-gradient">6</div>
173
+ <div class="text-gray-400 text-sm">Degrees of Freedom</div>
174
+ </div>
175
+ <div>
176
+ <div class="text-3xl font-bold text-gradient">50cm</div>
177
+ <div class="text-gray-400 text-sm">Reach</div>
178
+ </div>
179
+ <div>
180
+ <div class="text-3xl font-bold text-gradient">&lt;1kg</div>
181
+ <div class="text-gray-400 text-sm">Payload</div>
182
+ </div>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Right content - Robot illustration -->
187
+ <div class="relative flex items-center justify-center">
188
+ <div class="relative animate-float">
189
+ <!-- Robot arm representation -->
190
+ <div class="w-80 h-80 relative">
191
+ <!-- Base -->
192
+ <div class="absolute bottom-0 left-1/2 -translate-x-1/2 w-32 h-8 bg-gradient-to-t from-gray-700 to-gray-600 rounded-lg" />
193
+
194
+ <!-- Arm segments -->
195
+ <div class="absolute bottom-8 left-1/2 -translate-x-1/2 w-16 h-48 bg-gradient-to-r from-gray-600 to-gray-500 rounded-full transform -rotate-12 origin-bottom" />
196
+ <div class="absolute bottom-40 left-1/2 -translate-x-8 w-16 h-40 bg-gradient-to-r from-gray-500 to-gray-400 rounded-full transform rotate-30 origin-bottom" />
197
+
198
+ <!-- Joints -->
199
+ <div class="absolute bottom-8 left-1/2 -translate-x-1/2 w-20 h-20 bg-gradient-to-br from-primary-500 to-primary-600 rounded-full border-4 border-gray-700 shadow-lg shadow-primary-500/50" />
200
+ <div class="absolute bottom-40 left-1/2 -translate-x-8 w-16 h-16 bg-gradient-to-br from-primary-500 to-primary-600 rounded-full border-4 border-gray-700 shadow-lg shadow-primary-500/50" />
201
+
202
+ <!-- Gripper -->
203
+ <div class="absolute bottom-72 left-1/2 -translate-x-1/2 w-12 h-12 bg-gradient-to-br from-accent-500 to-accent-600 rounded-lg border-2 border-gray-700" />
204
+ </div>
205
+
206
+ <!-- Decorative elements -->
207
+ <div class="absolute -top-4 -right-4 w-24 h-24 bg-primary-500/20 rounded-full blur-xl" />
208
+ <div class="absolute -bottom-4 -left-4 w-32 h-32 bg-accent-500/20 rounded-full blur-xl" />
209
+ </div>
210
+ </div>
211
+ </div>
212
+ </div>
213
+ </section>
214
+
215
+ <!-- FEATURES SECTION -->
216
+ <section id="features" class="py-24 bg-gray-800/50">
217
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
218
+ <div class="text-center mb-16">
219
+ <h2 class="text-4xl font-bold mb-4">
220
+ <span class="text-gradient">Powerful Features</span>
221
+ </h2>
222
+ <p class="text-gray-400 text-lg max-w-2xl mx-auto">
223
+ Everything you need to bring your robotics projects to life
224
+ </p>
225
+ </div>
226
+
227
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
228
+ <!-- Feature 1 -->
229
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl p-8 hover:border-primary-500/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary-500/10">
230
+ <div class="w-14 h-14 bg-gradient-to-br from-primary-500 to-accent-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
231
+ <i data-lucide="cpu" class="w-7 h-7 text-white"></i>
232
+ </div>
233
+ <h3 class="text-xl font-semibold mb-3 text-white">High Performance</h3>
234
+ <p class="text-gray-400">Powered by advanced actuators providing precise control and smooth movements for complex tasks.</p>
235
+ </div>
236
+
237
+ <!-- Feature 2 -->
238
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl p-8 hover:border-primary-500/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary-500/10">
239
+ <div class="w-14 h-14 bg-gradient-to-br from-primary-500 to-accent-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
240
+ <i data-lucide="zap" class="w-7 h-7 text-white"></i>
241
+ </div>
242
+ <h3 class="text-xl font-semibold mb-3 text-white">Easy Setup</h3>
243
+ <p class="text-gray-400">Get started in minutes with our intuitive setup process and comprehensive documentation.</p>
244
+ </div>
245
+
246
+ <!-- Feature 3 -->
247
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl p-8 hover:border-primary-500/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary-500/10">
248
+ <div class="w-14 h-14 bg-gradient-to-br from-primary-500 to-accent-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
249
+ <i data-lucide="wifi" class="w-7 h-7 text-white"></i>
250
+ </div>
251
+ <h3 class="text-xl font-semibold mb-3 text-white">Cloud Connected</h3>
252
+ <p class="text-gray-400">Seamlessly integrate with cloud services and control your robot from anywhere in the world.</p>
253
+ </div>
254
+
255
+ <!-- Feature 4 -->
256
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl p-8 hover:border-primary-500/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary-500/10">
257
+ <div class="w-14 h-14 bg-gradient-to-br from-primary-500 to-accent-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
258
+ <i data-lucide="code" class="w-7 h-7 text-white"></i>
259
+ </div>
260
+ <h3 class="text-xl font-semibold mb-3 text-white">Open Source</h3>
261
+ <p class="text-gray-400">Fully open-source hardware and software. Customize and extend to fit your specific needs.</p>
262
+ </div>
263
+
264
+ <!-- Feature 5 -->
265
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl p-8 hover:border-primary-500/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary-500/10">
266
+ <div class="w-14 h-14 bg-gradient-to-br from-primary-500 to-accent-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
267
+ <i data-lucide="shield" class="w-7 h-7 text-white"></i>
268
+ </div>
269
+ <h3 class="text-xl font-semibold mb-3 text-white">Safe & Reliable</h3>
270
+ <p class="text-gray-400">Built with safety in mind. Includes collision detection and emergency stop functionality.</p>
271
+ </div>
272
+
273
+ <!-- Feature 6 -->
274
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl p-8 hover:border-primary-500/50 transition-all duration-300 hover:shadow-lg hover:shadow-primary-500/10">
275
+ <div class="w-14 h-14 bg-gradient-to-br from-primary-500 to-accent-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
276
+ <i data-lucide="users" class="w-7 h-7 text-white"></i>
277
+ </div>
278
+ <h3 class="text-xl font-semibold mb-3 text-white">Community Driven</h3>
279
+ <p class="text-gray-400">Join a vibrant community of developers, researchers, and robotics enthusiasts.</p>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </section>
284
+
285
+ <!-- SPECIFICATIONS SECTION -->
286
+ <section id="specs" class="py-24">
287
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
288
+ <div class="text-center mb-16">
289
+ <h2 class="text-4xl font-bold mb-4">
290
+ <span class="text-gradient">Technical Specifications</span>
291
+ </h2>
292
+ <p class="text-gray-400 text-lg max-w-2xl mx-auto">
293
+ Detailed specifications to help you integrate Reachy Mini into your projects
294
+ </p>
295
+ </div>
296
+
297
+ <div class="grid lg:grid-cols-3 gap-8 mb-16">
298
+ <!-- Mechanical Specs -->
299
+ <div class="bg-gray-800/50 border border-gray-700 rounded-2xl p-8">
300
+ <h3 class="text-xl font-semibold mb-6 text-primary-400">Mechanical</h3>
301
+ <div class="space-y-4">
302
+ <div class="flex justify-between items-start border-b border-gray-700 pb-3">
303
+ <span class="text-gray-400">Degrees of Freedom</span>
304
+ <span class="text-white font-medium text-right">6 DOF</span>
305
+ </div>
306
+ <div class="flex justify-between items-start border-b border-gray-700 pb-3">
307
+ <span class="text-gray-400">Reach</span>
308
+ <span class="text-white font-medium text-right">50 cm</span>
309
+ </div>
310
+ <div class="flex justify-between items-start border-b border-gray-700 pb-3">
311
+ <span class="text-gray-400">Payload</span>
312
+ <span class="text-white font-medium text-right">Up to 1 kg</span>
313
+ </div>
314
+ <div class="flex justify-between items-start border-b border-gray-700 pb-3">
315
+ <span class="text-gray-400">Repeatability</span>
316
+ <span class="text-white font-medium text-right">±0.5 mm</span>
317
+ </div>
318
+ <div class="flex justify-between items-start pb-3">
319
+ <span class="text-gray-400">Weight</span>
320
+ <span class="text-white font-medium text-right">3.5 kg</span>
321
+ </div>
322
+ </div>
323
+ </div>
324
+
325
+ <!-- Electrical Specs -->
326
+ <div class="bg-gray-800/50 border border-gray-700 rounded-2xl p-8">
327
+ <h3 class="text-xl font-semibold mb-6 text-primary-400">Electrical</h3>
328
+ <div class="space-y-4">
329
+ <div class="flex justify-between items-start border-b border-gray-700 pb-3">
330
+ <span class="text-gray-400">Voltage</span>
331
+ <span class="text-white font-medium text-right">12V DC</span>
332
+ </div>
333
+ <div class="flex justify-between items-start border-b border-gray-700 pb-3">
334
+ <span class="text-gray-400">Power Consumption</span>
335
+ <span class="text-white font-medium text-right">Max 50W</span>
336
+ </div>
337
+ <div class="flex justify-between items-start border-b border-gray-700 pb-3">
338
+ <span class="text-gray-400">Communication</span>
339
+ <span class="text-white font-medium text-right">USB-C, WiFi, Bluetooth</span>
340
+ </div>
341
+ <div class="flex justify-between items-start pb-3">
342
+ <span class="text-gray-400">Sensors</span>
343
+ <span class="text-white font-medium text-right">Position, Temp, Current</span>
344
+ </div>
345
+ </div>
346
+ </div>
347
+
348
+ <!-- Software Specs -->
349
+ <div class="bg-gray-800/50 border border-gray-700 rounded-2xl p-8">
350
+ <h3 class="text-xl font-semibold mb-6 text-primary-400">Software</h3>
351
+ <div class="space-y-4">
352
+ <div class="flex justify-between items-start border-b border-gray-700 pb-3">
353
+ <span class="text-gray-400">Programming</span>
354
+ <span class="text-white font-medium text-right">Python, ROS, C++</span>
355
+ </div>
356
+ <div class="flex justify-between items-start border-b border-gray-700 pb-3">
357
+ <span class="text-gray-400">Control</span>
358
+ <span class="text-white font-medium text-right">Inverse Kinematics</span>
359
+ </div>
360
+ <div class="flex justify-between items-start border-b border-gray-700 pb-3">
361
+ <span class="text-gray-400">API</span>
362
+ <span class="text-white font-medium text-right">REST, WebSocket</span>
363
+ </div>
364
+ <div class="flex justify-between items-start pb-3">
365
+ <span class="text-gray-400">Compatibility</span>
366
+ <span class="text-white font-medium text-right">Linux, macOS, Windows</span>
367
+ </div>
368
+ </div>
369
+ </div>
370
+ </div>
371
+
372
+ <!-- What's included -->
373
+ <div class="bg-gradient-to-r from-primary-900/20 to-accent-900/20 border border-gray-700 rounded-2xl p-8 lg:p-12">
374
+ <h3 class="text-2xl font-semibold mb-8 text-center">What's in the Box</h3>
375
+ <div class="grid sm:grid-cols-2 lg:grid-cols-3 gap-4">
376
+ <div class="flex items-center space-x-3">
377
+ <div class="w-6 h-6 bg-accent-500 rounded-full flex items-center justify-center flex-shrink-0">
378
+ <i data-lucide="check" class="w-4 h-4 text-white"></i>
379
+ </div>
380
+ <span class="text-gray-300">Reachy Mini Robotic Arm</span>
381
+ </div>
382
+ <div class="flex items-center space-x-3">
383
+ <div class="w-6 h-6 bg-accent-500 rounded-full flex items-center justify-center flex-shrink-0">
384
+ <i data-lucide="check" class="w-4 h-4 text-white"></i>
385
+ </div>
386
+ <span class="text-gray-300">Power Supply (12V, 5A)</span>
387
+ </div>
388
+ <div class="flex items-center space-x-3">
389
+ <div class="w-6 h-6 bg-accent-500 rounded-full flex items-center justify-center flex-shrink-0">
390
+ <i data-lucide="check" class="w-4 h-4 text-white"></i>
391
+ </div>
392
+ <span class="text-gray-300">USB-C Cable</span>
393
+ </div>
394
+ <div class="flex items-center space-x-3">
395
+ <div class="w-6 h-6 bg-accent-500 rounded-full flex items-center justify-center flex-shrink-0">
396
+ <i data-lucide="check" class="w-4 h-4 text-white"></i>
397
+ </div>
398
+ <span class="text-gray-300">Quick Start Guide</span>
399
+ </div>
400
+ <div class="flex items-center space-x-3">
401
+ <div class="w-6 h-6 bg-accent-500 rounded-full flex items-center justify-center flex-shrink-0">
402
+ <i data-lucide="check" class="w-4 h-4 text-white"></i>
403
+ </div>
404
+ <span class="text-gray-300">Access to Online Documentation</span>
405
+ </div>
406
+ <div class="flex items-center space-x-3">
407
+ <div class="w-6 h-6 bg-accent-500 rounded-full flex items-center justify-center flex-shrink-0">
408
+ <i data-lucide="check" class="w-4 h-4 text-white"></i>
409
+ </div>
410
+ <span class="text-gray-300">Community Support Access</span>
411
+ </div>
412
+ </div>
413
+ </div>
414
+ </div>
415
+ </section>
416
+
417
+ <!-- APPLICATIONS SECTION -->
418
+ <section id="applications" class="py-24 bg-gray-800/50">
419
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
420
+ <div class="text-center mb-16">
421
+ <h2 class="text-4xl font-bold mb-4">
422
+ <span class="text-gradient">Applications</span>
423
+ </h2>
424
+ <p class="text-gray-400 text-lg max-w-2xl mx-auto">
425
+ Discover how Reachy Mini can transform your projects and workflows
426
+ </p>
427
+ </div>
428
+
429
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
430
+ <!-- App 1 -->
431
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl overflow-hidden hover:border-gray-600 transition-all duration-300">
432
+ <div class="h-2 bg-gradient-to-r from-blue-500 to-cyan-500" />
433
+ <div class="p-8">
434
+ <div class="w-14 h-14 bg-gradient-to-br from-blue-500 to-cyan-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
435
+ <i data-lucide="graduation-cap" class="w-7 h-7 text-white"></i>
436
+ </div>
437
+ <h3 class="text-xl font-semibold mb-3 text-white">Education</h3>
438
+ <p class="text-gray-400">Teach robotics, programming, and STEM concepts with hands-on learning experiences.</p>
439
+ </div>
440
+ </div>
441
+
442
+ <!-- App 2 -->
443
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl overflow-hidden hover:border-gray-600 transition-all duration-300">
444
+ <div class="h-2 bg-gradient-to-r from-orange-500 to-red-500" />
445
+ <div class="p-8">
446
+ <div class="w-14 h-14 bg-gradient-to-br from-orange-500 to-red-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
447
+ <i data-lucide="factory" class="w-7 h-7 text-white"></i>
448
+ </div>
449
+ <h3 class="text-xl font-semibold mb-3 text-white">Industrial Prototyping</h3>
450
+ <p class="text-gray-400">Test and validate automation concepts before scaling to industrial solutions.</p>
451
+ </div>
452
+ </div>
453
+
454
+ <!-- App 3 -->
455
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl overflow-hidden hover:border-gray-600 transition-all duration-300">
456
+ <div class="h-2 bg-gradient-to-r from-purple-500 to-pink-500" />
457
+ <div class="p-8">
458
+ <div class="w-14 h-14 bg-gradient-to-br from-purple-500 to-pink-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
459
+ <i data-lucide="microscope" class="w-7 h-7 text-white"></i>
460
+ </div>
461
+ <h3 class="text-xl font-semibold mb-3 text-white">Research</h3>
462
+ <p class="text-gray-400">Conduct experiments in robotics, AI, and human-robot interaction studies.</p>
463
+ </div>
464
+ </div>
465
+
466
+ <!-- App 4 -->
467
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl overflow-hidden hover:border-gray-600 transition-all duration-300">
468
+ <div class="h-2 bg-gradient-to-r from-green-500 to-emerald-500" />
469
+ <div class="p-8">
470
+ <div class="w-14 h-14 bg-gradient-to-br from-green-500 to-emerald-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
471
+ <i data-lucide="palette" class="w-7 h-7 text-white"></i>
472
+ </div>
473
+ <h3 class="text-xl font-semibold mb-3 text-white">Creative Projects</h3>
474
+ <p class="text-gray-400">Bring artistic visions to life with precise robotic movements and control.</p>
475
+ </div>
476
+ </div>
477
+
478
+ <!-- App 5 -->
479
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl overflow-hidden hover:border-gray-600 transition-all duration-300">
480
+ <div class="h-2 bg-gradient-to-r from-yellow-500 to-orange-500" />
481
+ <div class="p-8">
482
+ <div class="w-14 h-14 bg-gradient-to-br from-yellow-500 to-orange-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
483
+ <i data-lucide="gamepad-2" class="w-7 h-7 text-white"></i>
484
+ </div>
485
+ <h3 class="text-xl font-semibold mb-3 text-white">Gaming & Entertainment</h3>
486
+ <p class="text-gray-400">Create interactive experiences and gaming applications with robotic feedback.</p>
487
+ </div>
488
+ </div>
489
+
490
+ <!-- App 6 -->
491
+ <div class="group bg-gray-900 border border-gray-700 rounded-2xl overflow-hidden hover:border-gray-600 transition-all duration-300">
492
+ <div class="h-2 bg-gradient-to-r from-indigo-500 to-purple-500" />
493
+ <div class="p-8">
494
+ <div class="w-14 h-14 bg-gradient-to-br from-indigo-500 to-purple-500 rounded-xl flex items-center justify-center mb-6 group-hover:scale-110 transition-transform">
495
+ <i data-lucide="shopping-bag" class="w-7 h-7 text-white"></i>
496
+ </div>
497
+ <h3 class="text-xl font-semibold mb-3 text-white">Small Business</h3>
498
+ <p class="text-gray-400">Automate small-scale tasks and improve efficiency in local businesses.</p>
499
+ </div>
500
+ </div>
501
+ </div>
502
+ </div>
503
+ </section>
504
+
505
+ <!-- CTA SECTION -->
506
+ <section class="py-24">
507
+ <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
508
+ <div class="bg-gradient-to-r from-primary-600 to-accent-600 rounded-3xl p-12 text-center relative overflow-hidden">
509
+ <!-- Background decoration -->
510
+ <div class="absolute top-0 right-0 w-64 h-64 bg-white/10 rounded-full blur-3xl" />
511
+ <div class="absolute bottom-0 left-0 w-48 h-48 bg-white/10 rounded-full blur-3xl" />
512
+
513
+ <div class="relative z-10">
514
+ <h2 class="text-4xl font-bold mb-4 text-white">
515
+ Ready to Build the Future?
516
+ </h2>
517
+ <p class="text-xl text-white/90 mb-8 max-w-2xl mx-auto">
518
+ Join thousands of developers, researchers, and innovators using Reachy Mini to bring their ideas to life.
519
+ </p>
520
+
521
+ <div class="flex flex-col sm:flex-row gap-4 justify-center items-center mb-8">
522
+ <button class="bg-white text-gray-900 px-8 py-4 rounded-xl font-semibold hover:bg-gray-100 transition-all duration-300 flex items-center justify-center space-x-2">
523
+ <span>Get Started Now</span>
524
+ <i data-lucide="arrow-right" class="w-5 h-5"></i>
525
+ </button>
526
+
527
+ <button class="bg-white/20 backdrop-blur text-white px-8 py-4 rounded-xl font-semibold hover:bg-white/30 transition-all duration-300 flex items-center justify-center space-x-2 border border-white/30">
528
+ <i data-lucide="github" class="w-5 h-5"></i>
529
+ <span>View on GitHub</span>
530
+ </button>
531
+ </div>
532
+
533
+ <div class="flex justify-center items-center space-x-8">
534
+ <a href="#" class="text-white/80 hover:text-white transition-colors flex items-center space-x-2">
535
+ <i data-lucide="twitter" class="w-5 h-5"></i>
536
+ <span>Follow Updates</span>
537
+ </a>
538
+ <a href="#" class="text-white/80 hover:text-white transition-colors">
539
+ Join Discord
540
+ </a>
541
+ </div>
542
+ </div>
543
+ </div>
544
+ </div>
545
+ </section>
546
+ </main>
547
+
548
+ <!-- FOOTER -->
549
+ <footer class="bg-gray-900 border-t border-gray-800 py-16">
550
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
551
+ <div class="grid md:grid-cols-2 lg:grid-cols-6 gap-12 mb-12">
552
+ <!-- Brand -->
553
+ <div class="lg:col-span-2">
554
+ <div class="flex items-center space-x-2 mb-4">
555
+ <div class="w-10 h-10 bg-gradient-to-br from-primary-500 to-accent-500 rounded-lg flex items-center justify-center">
556
+ <span class="text-white font-bold text-xl">R</span>
557
+ </div>
558
+ <span class="text-xl font-bold">Reachy Mini</span>
559
+ </div>
560
+ <p class="text-gray-400 mb-6 max-w-sm">
561
+ Empowering the next generation of roboticists with accessible, open-source robotics solutions.
562
+ </p>
563
+ <div class="flex space-x-4">
564
+ <a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center text-gray-400 hover:text-white hover:bg-gray-700 transition-colors">
565
+ <i data-lucide="github" class="w-5 h-5"></i>
566
+ </a>
567
+ <a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center text-gray-400 hover:text-white hover:bg-gray-700 transition-colors">
568
+ <i data-lucide="twitter" class="w-5 h-5"></i>
569
+ </a>
570
+ <a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center text-gray-400 hover:text-white hover:bg-gray-700 transition-colors">
571
+ <i data-lucide="linkedin" class="w-5 h-5"></i>
572
+ </a>
573
+ <a href="#" class="w-10 h-10 bg-gray-800 rounded-lg flex items-center justify-center text-gray-400 hover:text-white hover:bg-gray-700 transition-colors">
574
+ <i data-lucide="mail" class="w-5 h-5"></i>
575
+ </a>
576
+ </div>
577
+ </div>
578
+
579
+ <!-- Links -->
580
+ <div>
581
+ <h4 class="text-white font-semibold mb-4 capitalize">Product</h4>
582
+ <ul class="space-y-3">
583
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Features</a></li>
584
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Specifications</a></li>
585
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Applications</a></li>
586
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Pricing</a></li>
587
+ </ul>
588
+ </div>
589
+
590
+ <div>
591
+ <h4 class="text-white font-semibold mb-4 capitalize">Resources</h4>
592
+ <ul class="space-y-3">
593
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Documentation</a></li>
594
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">API Reference</a></li>
595
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Tutorials</a></li>
596
+ <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Blog</a></li>
597
+ </ul>
598
+ </div>
599
+
600
+ <div>
601
+ <h4 class="text-white