privateuserh commited on
Commit
a025688
·
verified ·
1 Parent(s): c2917a4

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +458 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Hydros
3
- emoji: 🦀
4
- colorFrom: green
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: hydros
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,458 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>hydroS Micro-Climatic Companion</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @keyframes rotate {
11
+ 0% { transform: rotate(0deg); }
12
+ 100% { transform: rotate(360deg); }
13
+ }
14
+ .rotating-cylinder {
15
+ animation: rotate 15s linear infinite;
16
+ }
17
+ .gradient-bg {
18
+ background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #6366f1 100%);
19
+ }
20
+ .remote-btn {
21
+ transition: all 0.2s ease;
22
+ }
23
+ .remote-btn:active {
24
+ transform: scale(0.95);
25
+ box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
26
+ }
27
+ .status-pulse {
28
+ animation: pulse 2s infinite;
29
+ }
30
+ @keyframes pulse {
31
+ 0% { opacity: 1; }
32
+ 50% { opacity: 0.5; }
33
+ 100% { opacity: 1; }
34
+ }
35
+ </style>
36
+ </head>
37
+ <body class="bg-gray-100 font-sans">
38
+ <!-- Header -->
39
+ <header class="gradient-bg text-white shadow-lg">
40
+ <div class="container mx-auto px-4 py-6">
41
+ <div class="flex justify-between items-center">
42
+ <div class="flex items-center space-x-3">
43
+ <i class="fas fa-water text-3xl"></i>
44
+ <h1 class="text-2xl font-bold">hydroS</h1>
45
+ </div>
46
+ <div class="hidden md:flex space-x-6">
47
+ <a href="#features" class="hover:text-gray-200 transition">Features</a>
48
+ <a href="#tech" class="hover:text-gray-200 transition">Technology</a>
49
+ <a href="#remote" class="hover:text-gray-200 transition">Remote</a>
50
+ <a href="#cost" class="hover:text-gray-200 transition">Cost Analysis</a>
51
+ </div>
52
+ <button class="md:hidden text-2xl">
53
+ <i class="fas fa-bars"></i>
54
+ </button>
55
+ </div>
56
+ <div class="mt-12 text-center pb-12">
57
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Micro-Climatic Companion</h2>
58
+ <p class="text-xl max-w-2xl mx-auto">Sustainable air conditioning with integrated water collection and solar power</p>
59
+ <button class="mt-8 bg-white text-blue-600 px-8 py-3 rounded-full font-bold hover:bg-gray-100 transition shadow-lg">
60
+ Pre-order Now
61
+ </button>
62
+ </div>
63
+ </div>
64
+ </header>
65
+
66
+ <!-- Main Content -->
67
+ <main>
68
+ <!-- Features Section -->
69
+ <section id="features" class="py-16 bg-white">
70
+ <div class="container mx-auto px-4">
71
+ <h2 class="text-3xl font-bold text-center mb-12">Key Features</h2>
72
+ <div class="grid md:grid-cols-3 gap-8">
73
+ <div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition">
74
+ <div class="text-blue-500 text-4xl mb-4">
75
+ <i class="fas fa-snowflake"></i>
76
+ </div>
77
+ <h3 class="text-xl font-semibold mb-2">Efficient Cooling</h3>
78
+ <p class="text-gray-600">Peltier cooler with finned cold coil and hydrophilic coating for optimal temperature control and condensation.</p>
79
+ </div>
80
+ <div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition">
81
+ <div class="text-blue-500 text-4xl mb-4">
82
+ <i class="fas fa-tint"></i>
83
+ </div>
84
+ <h3 class="text-xl font-semibold mb-2">Water Collection</h3>
85
+ <p class="text-gray-600">Rotating copper cylinder with sequenced holes and optional copper strands for maximum water extraction from air.</p>
86
+ </div>
87
+ <div class="bg-gray-50 p-6 rounded-xl shadow-md hover:shadow-lg transition">
88
+ <div class="text-blue-500 text-4xl mb-4">
89
+ <i class="fas fa-solar-panel"></i>
90
+ </div>
91
+ <h3 class="text-xl font-semibold mb-2">Solar Powered</h3>
92
+ <p class="text-gray-600">High-efficiency solar panel with optional trackers for sustainable operation and reduced energy costs.</p>
93
+ </div>
94
+ </div>
95
+ </div>
96
+ </section>
97
+
98
+ <!-- Technology Section -->
99
+ <section id="tech" class="py-16 bg-gray-50">
100
+ <div class="container mx-auto px-4">
101
+ <h2 class="text-3xl font-bold text-center mb-12">Technology Overview</h2>
102
+ <div class="flex flex-col lg:flex-row items-center gap-8">
103
+ <div class="lg:w-1/2">
104
+ <div class="relative bg-white p-8 rounded-xl shadow-lg">
105
+ <div class="absolute -top-4 -left-4 w-16 h-16 bg-blue-500 rounded-full flex items-center justify-center text-white">
106
+ <i class="fas fa-cogs text-2xl"></i>
107
+ </div>
108
+ <h3 class="text-2xl font-semibold mb-4">Operating Frequencies</h3>
109
+ <div class="space-y-4">
110
+ <div class="p-4 border border-blue-100 rounded-lg">
111
+ <div class="flex items-center mb-2">
112
+ <i class="fas fa-bluetooth-b text-blue-500 mr-2"></i>
113
+ <h4 class="font-semibold">Bluetooth</h4>
114
+ </div>
115
+ <p class="text-sm text-gray-600">2.400 GHz to 2.4835 GHz - Energy-efficient, secure pairing (10-30m range)</p>
116
+ </div>
117
+ <div class="p-4 border border-blue-100 rounded-lg">
118
+ <div class="flex items-center mb-2">
119
+ <i class="fas fa-bbroadcast-tower text-purple-500 mr-2"></i>
120
+ <h4 class="font-semibold">Radio Frequency</h4>
121
+ </div>
122
+ <p class="text-sm text-gray-600">433MHz/915MHz/2.4GHz - Longer range (up to 100m), better penetration</p>
123
+ </div>
124
+ <div class="p-4 border border-blue-100 rounded-lg">
125
+ <div class="flex items-center mb-2">
126
+ <i class="fas fa-infinity text-red-500 mr-2"></i>
127
+ <h4 class="font-semibold">Infrared</h4>
128
+ </div>
129
+ <p class="text-sm text-gray-600">360 kHz to 1 GHz - Low power, line-of-sight required (few meters)</p>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ </div>
134
+ <div class="lg:w-1/2">
135
+ <div class="bg-white p-6 rounded-xl shadow-lg">
136
+ <div class="flex justify-center mb-6">
137
+ <div class="relative w-64 h-64">
138
+ <div class="absolute inset-0 bg-blue-100 rounded-full flex items-center justify-center rotating-cylinder">
139
+ <i class="fas fa-circle-notch text-blue-500 text-6xl"></i>
140
+ </div>
141
+ <div class="absolute inset-4 bg-blue-200 rounded-full flex items-center justify-center">
142
+ <i class="fas fa-droplet text-blue-600 text-4xl"></i>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ <h3 class="text-xl font-semibold text-center mb-3">Rotating Copper Cylinder</h3>
147
+ <ul class="space-y-2 text-gray-700">
148
+ <li class="flex items-start">
149
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
150
+ <span>Increases surface area for faster condensation</span>
151
+ </li>
152
+ <li class="flex items-start">
153
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
154
+ <span>Sequenced holes facilitate water dispersion</span>
155
+ </li>
156
+ <li class="flex items-start">
157
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
158
+ <span>Self-cleaning due to continuous movement</span>
159
+ </li>
160
+ <li class="flex items-start">
161
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
162
+ <span>Optional copper strands for enhanced heat transfer</span>
163
+ </li>
164
+ </ul>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </section>
170
+
171
+ <!-- Remote Control Section -->
172
+ <section id="remote" class="py-16 bg-white">
173
+ <div class="container mx-auto px-4">
174
+ <h2 class="text-3xl font-bold text-center mb-12">Remote Control Design</h2>
175
+ <div class="flex flex-col lg:flex-row items-center gap-12">
176
+ <div class="lg:w-1/2 flex justify-center">
177
+ <div class="relative">
178
+ <div class="w-64 h-40 bg-gray-800 rounded-2xl shadow-xl p-4">
179
+ <div class="flex justify-between items-center mb-4">
180
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
181
+ <div class="text-xs text-gray-400">hydroS REMOTE</div>
182
+ <div class="w-3 h-3 rounded-full bg-green-500 status-pulse"></div>
183
+ </div>
184
+ <div class="grid grid-cols-3 gap-2 mb-3">
185
+ <button class="remote-btn bg-blue-600 text-white rounded-lg py-2 flex items-center justify-center">
186
+ <i class="fas fa-power-off"></i>
187
+ </button>
188
+ <button class="remote-btn bg-gray-700 text-white rounded-lg py-2 flex items-center justify-center">
189
+ <i class="fas fa-fan"></i>
190
+ </button>
191
+ <button class="remote-btn bg-gray-700 text-white rounded-lg py-2 flex items-center justify-center">
192
+ <i class="fas fa-snowflake"></i>
193
+ </button>
194
+ <button class="remote-btn bg-gray-700 text-white rounded-lg py-2 flex items-center justify-center">
195
+ <i class="fas fa-sun"></i>
196
+ </button>
197
+ <button class="remote-btn bg-blue-600 text-white rounded-lg py-2 flex items-center justify-center">
198
+ <i class="fas fa-tint"></i>
199
+ </button>
200
+ <button class="remote-btn bg-gray-700 text-white rounded-lg py-2 flex items-center justify-center">
201
+ <i class="fas fa-lightbulb"></i>
202
+ </button>
203
+ </div>
204
+ <div class="bg-gray-900 rounded-lg p-2 text-center">
205
+ <div class="text-xs text-gray-400">Battery: 85%</div>
206
+ <div class="h-1 bg-gray-700 rounded-full mt-1">
207
+ <div class="h-1 bg-green-500 rounded-full" style="width: 85%;"></div>
208
+ </div>
209
+ </div>
210
+ </div>
211
+ <div class="absolute -bottom-6 -right-6 bg-blue-500 text-white w-12 h-12 rounded-full flex items-center justify-center shadow-lg">
212
+ <i class="fas fa-bluetooth-b"></i>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ <div class="lg:w-1/2">
217
+ <div class="space-y-6">
218
+ <div>
219
+ <h3 class="text-xl font-semibold mb-2 flex items-center">
220
+ <i class="fas fa-mobile-alt text-blue-500 mr-2"></i>
221
+ Compact Design
222
+ </h3>
223
+ <p class="text-gray-600">3-inch ergonomic remote with water-resistant, impact-resistant casing for humid environments.</p>
224
+ </div>
225
+ <div>
226
+ <h3 class="text-xl font-semibold mb-2 flex items-center">
227
+ <i class="fas fa-battery-three-quarters text-green-500 mr-2"></i>
228
+ Power Options
229
+ </h3>
230
+ <p class="text-gray-600">Rechargeable lithium-ion battery with optional solar panel for self-charging capability.</p>
231
+ </div>
232
+ <div>
233
+ <h3 class="text-xl font-semibold mb-2 flex items-center">
234
+ <i class="fas fa-shield-alt text-purple-500 mr-2"></i>
235
+ Secure Communication
236
+ </h3>
237
+ <p class="text-gray-600">Bluetooth 5.0 with AES encryption for reliable, secure control of your hydroS unit.</p>
238
+ </div>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ </section>
244
+
245
+ <!-- Cost Analysis Section -->
246
+ <section id="cost" class="py-16 bg-gray-50">
247
+ <div class="container mx-auto px-4">
248
+ <h2 class="text-3xl font-bold text-center mb-12">Cost Analysis</h2>
249
+ <div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden">
250
+ <div class="p-6">
251
+ <div class="flex justify-between items-center mb-6">
252
+ <h3 class="text-2xl font-semibold">Estimated Production Cost</h3>
253
+ <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">Per Unit</span>
254
+ </div>
255
+ <div class="space-y-4">
256
+ <div>
257
+ <div class="flex justify-between mb-1">
258
+ <span class="font-medium">Material Costs</span>
259
+ <span>$150 - $250</span>
260
+ </div>
261
+ <div class="w-full bg-gray-200 rounded-full h-2.5">
262
+ <div class="bg-blue-600 h-2.5 rounded-full" style="width: 70%"></div>
263
+ </div>
264
+ </div>
265
+ <div>
266
+ <div class="flex justify-between mb-1">
267
+ <span class="font-medium">Labor Costs</span>
268
+ <span>$50 - $100</span>
269
+ </div>
270
+ <div class="w-full bg-gray-200 rounded-full h-2.5">
271
+ <div class="bg-green-500 h-2.5 rounded-full" style="width: 40%"></div>
272
+ </div>
273
+ </div>
274
+ <div>
275
+ <div class="flex justify-between mb-1">
276
+ <span class="font-medium">Overhead Costs</span>
277
+ <span>$50 - $100</span>
278
+ </div>
279
+ <div class="w-full bg-gray-200 rounded-full h-2.5">
280
+ <div class="bg-purple-500 h-2.5 rounded-full" style="width: 40%"></div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+ <div class="mt-8 p-4 bg-blue-50 rounded-lg">
285
+ <div class="flex justify-between items-center">
286
+ <span class="font-bold text-lg">Total Estimated Cost</span>
287
+ <span class="text-2xl font-bold text-blue-700">$250 - $450</span>
288
+ </div>
289
+ </div>
290
+ </div>
291
+ <div class="bg-gray-100 px-6 py-4">
292
+ <h4 class="font-semibold mb-2">Variable Factors:</h4>
293
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-2 text-sm">
294
+ <div class="flex items-start">
295
+ <i class="fas fa-boxes text-gray-500 mt-1 mr-2"></i>
296
+ <span>Production volume (economies of scale)</span>
297
+ </div>
298
+ <div class="flex items-start">
299
+ <i class="fas fa-globe-americas text-gray-500 mt-1 mr-2"></i>
300
+ <span>Geographical location of production</span>
301
+ </div>
302
+ <div class="flex items-start">
303
+ <i class="fas fa-robot text-gray-500 mt-1 mr-2"></i>
304
+ <span>Automation level in manufacturing</span>
305
+ </div>
306
+ <div class="flex items-start">
307
+ <i class="fas fa-tools text-gray-500 mt-1 mr-2"></i>
308
+ <span>Material sourcing and supplier costs</span>
309
+ </div>
310
+ </div>
311
+ </div>
312
+ </div>
313
+ </div>
314
+ </section>
315
+
316
+ <!-- System Diagram -->
317
+ <section class="py-16 bg-white">
318
+ <div class="container mx-auto px-4">
319
+ <h2 class="text-3xl font-bold text-center mb-12">System Diagram</h2>
320
+ <div class="bg-gray-50 p-8 rounded-xl shadow-inner">
321
+ <div class="relative h-96">
322
+ <!-- Air Intake -->
323
+ <div class="absolute left-8 top-1/4 bg-white p-4 rounded-lg shadow-md border-l-4 border-blue-500 w-40">
324
+ <div class="flex items-center mb-2">
325
+ <i class="fas fa-wind text-blue-500 mr-2"></i>
326
+ <h4 class="font-semibold">Air Intake</h5>
327
+ </div>
328
+ <p class="text-xs text-gray-600">5x5" high static pressure fan with pre-filter</p>
329
+ </div>
330
+
331
+ <!-- Cooling System -->
332
+ <div class="absolute left-1/3 top-1/3 bg-white p-4 rounded-lg shadow-md border-l-4 border-green-500 w-40">
333
+ <div class="flex items-center mb-2">
334
+ <i class="fas fa-snowflake text-green-500 mr-2"></i>
335
+ <h4 class="font-semibold">Cooling System</h5>
336
+ </div>
337
+ <p class="text-xs text-gray-600">Peltier cooler with finned cold coil</p>
338
+ </div>
339
+
340
+ <!-- Water Collection -->
341
+ <div class="absolute right-1/3 top-1/2 bg-white p-4 rounded-lg shadow-md border-l-4 border-purple-500 w-40">
342
+ <div class="flex items-center mb-2">
343
+ <i class="fas fa-tint text-purple-500 mr-2"></i>
344
+ <h4 class="font-semibold">Water Collection</h5>
345
+ </div>
346
+ <p class="text-xs text-gray-600">Rotating copper cylinder with collection pan</p>
347
+ </div>
348
+
349
+ <!-- Solar Power -->
350
+ <div class="absolute right-8 top-1/4 bg-white p-4 rounded-lg shadow-md border-l-4 border-yellow-500 w-40">
351
+ <div class="flex items-center mb-2">
352
+ <i class="fas fa-solar-panel text-yellow-500 mr-2"></i>
353
+ <h4 class="font-semibold">Solar Power</h5>
354
+ </div>
355
+ <p class="text-xs text-gray-600">High-efficiency panel with tracking</p>
356
+ </div>
357
+
358
+ <!-- Control System -->
359
+ <div class="absolute left-1/2 top-3/4 transform -translate-x-1/2 bg-white p-4 rounded-lg shadow-md border-l-4 border-red-500 w-44">
360
+ <div class="flex items-center mb-2">
361
+ <i class="fas fa-microchip text-red-500 mr-2"></i>
362
+ <h4 class="font-semibold">Control System</h5>
363
+ </div>
364
+ <p class="text-xs text-gray-600">Microcontroller with sensors and Bluetooth</p>
365
+ </div>
366
+
367
+ <!-- Arrows showing flow -->
368
+ <div class="absolute left-48 top-1/3 w-16 h-1 bg-blue-300"></div>
369
+ <div class="absolute left-1/3 top-48 w-1 h-16 bg-green-300"></div>
370
+ <div class="absolute right-1/3 top-48 w-1 h-16 bg-purple-300"></div>
371
+ <div class="absolute right-48 top-1/3 w-16 h-1 bg-yellow-300"></div>
372
+ <div class="absolute left-1/2 top-1/2 w-1 h-16 bg-gray-300"></div>
373
+
374
+ <!-- Central unit representation -->
375
+ <div class="absolute left-1/2 top-1/2 transform -translate-x-1/2 -translate-y-1/2">
376
+ <div class="w-32 h-32 bg-gradient-to-br from-blue-100 to-blue-200 rounded-full flex items-center justify-center shadow-lg">
377
+ <i class="fas fa-water text-blue-500 text-4xl"></i>
378
+ </div>
379
+ </div>
380
+ </div>
381
+ </div>
382
+ </div>
383
+ </section>
384
+ </main>
385
+
386
+ <!-- Footer -->
387
+ <footer class="bg-gray-900 text-white py-12">
388
+ <div class="container mx-auto px-4">
389
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
390
+ <div>
391
+ <h3 class="text-xl font-bold mb-4 flex items-center">
392
+ <i class="fas fa-water mr-2"></i>
393
+ hydroS
394
+ </h3>
395
+ <p class="text-gray-400">Sustainable micro-climatic solutions for a better future.</p>
396
+ </div>
397
+ <div>
398
+ <h4 class="font-semibold mb-4">Technology</h4>
399
+ <ul class="space-y-2">
400
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Cooling System</a></li>
401
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Water Collection</a></li>
402
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Solar Integration</a></li>
403
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Wireless Control</a></li>
404
+ </ul>
405
+ </div>
406
+ <div>
407
+ <h4 class="font-semibold mb-4">Contact</h4>
408
+ <div class="space-y-2">
409
+ <div class="flex items-center">
410
+ <i class="fas fa-envelope text-gray-400 mr-2"></i>
411
+ <span class="text-gray-400">[email protected]</span>
412
+ </div>
413
+ <div class="flex items-center">
414
+ <i class="fas fa-phone text-gray-400 mr-2"></i>
415
+ <span class="text-gray-400">+1 (555) 123-4567</span>
416
+ </div>
417
+ </div>
418
+ </div>
419
+ </div>
420
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-500">
421
+ <p>&copy; 2023 hydroS Technologies. All rights reserved.</p>
422
+ <p class="mt-2 text-sm">FCC compliant wireless communication in North America</p>
423
+ </div>
424
+ </div>
425
+ </footer>
426
+
427
+ <script>
428
+ // Simple interactive elements
429
+ document.addEventListener('DOMContentLoaded', function() {
430
+ // Remote control button interactions
431
+ const remoteBtns = document.querySelectorAll('.remote-btn');
432
+ remoteBtns.forEach(btn => {
433
+ btn.addEventListener('click', function() {
434
+ this.classList.toggle('bg-blue-600');
435
+ this.classList.toggle('bg-gray-700');
436
+
437
+ // Find icon and toggle active state
438
+ const icon = this.querySelector('i');
439
+ if (icon) {
440
+ icon.classList.toggle('text-white');
441
+ icon.classList.toggle('text-blue-300');
442
+ }
443
+ });
444
+ });
445
+
446
+ // Smooth scrolling for navigation links
447
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
448
+ anchor.addEventListener('click', function(e) {
449
+ e.preventDefault();
450
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
451
+ behavior: 'smooth'
452
+ });
453
+ });
454
+ });
455
+ });
456
+ </script>
457
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=privateuserh/hydros" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
458
+ </html>