observabot commited on
Commit
6751d5f
·
verified ·
1 Parent(s): e03c512

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +545 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Robot Website
3
- emoji: 🐨
4
- colorFrom: red
5
  colorTo: red
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: robot-website
3
+ emoji: 🐳
4
+ colorFrom: pink
5
  colorTo: red
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,545 @@
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>RoboTech - Future of Robotics</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 float {
11
+ 0%, 100% { transform: translateY(0); }
12
+ 50% { transform: translateY(-20px); }
13
+ }
14
+ .floating {
15
+ animation: float 6s ease-in-out infinite;
16
+ }
17
+ .robot-eye {
18
+ transition: all 0.3s ease;
19
+ }
20
+ .terminal {
21
+ font-family: 'Courier New', monospace;
22
+ background-color: #1a1a1a;
23
+ color: #0f0;
24
+ border-radius: 8px;
25
+ overflow: hidden;
26
+ }
27
+ .terminal-header {
28
+ background-color: #333;
29
+ padding: 6px 12px;
30
+ border-top-left-radius: 8px;
31
+ border-top-right-radius: 8px;
32
+ }
33
+ .terminal-body {
34
+ padding: 16px;
35
+ height: 200px;
36
+ overflow-y: auto;
37
+ }
38
+ .cursor {
39
+ animation: blink 1s infinite;
40
+ }
41
+ @keyframes blink {
42
+ 0%, 100% { opacity: 1; }
43
+ 50% { opacity: 0; }
44
+ }
45
+ .glow {
46
+ box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
47
+ }
48
+ .circuit-bg {
49
+ background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="10" height="10" x="0" y="0" fill="%23ffffff10"/><rect width="10" height="10" x="20" y="0" fill="%23ffffff10"/><rect width="10" height="10" x="40" y="0" fill="%23ffffff10"/><rect width="10" height="10" x="60" y="0" fill="%23ffffff10"/><rect width="10" height="10" x="80" y="0" fill="%23ffffff10"/><rect width="10" height="10" x="0" y="20" fill="%23ffffff10"/><rect width="10" height="10" x="20" y="20" fill="%23ffffff10"/><rect width="10" height="10" x="40" y="20" fill="%23ffffff10"/><rect width="10" height="10" x="60" y="20" fill="%23ffffff10"/><rect width="10" height="10" x="80" y="20" fill="%23ffffff10"/><rect width="10" height="10" x="0" y="40" fill="%23ffffff10"/><rect width="10" height="10" x="20" y="40" fill="%23ffffff10"/><rect width="10" height="10" x="40" y="40" fill="%23ffffff10"/><rect width="10" height="10" x="60" y="40" fill="%23ffffff10"/><rect width="10" height="10" x="80" y="40" fill="%23ffffff10"/><rect width="10" height="10" x="0" y="60" fill="%23ffffff10"/><rect width="10" height="10" x="20" y="60" fill="%23ffffff10"/><rect width="10" height="10" x="40" y="60" fill="%23ffffff10"/><rect width="10" height="10" x="60" y="60" fill="%23ffffff10"/><rect width="10" height="10" x="80" y="60" fill="%23ffffff10"/><rect width="10" height="10" x="0" y="80" fill="%23ffffff10"/><rect width="10" height="10" x="20" y="80" fill="%23ffffff10"/><rect width="10" height="10" x="40" y="80" fill="%23ffffff10"/><rect width="10" height="10" x="60" y="80" fill="%23ffffff10"/><rect width="10" height="10" x="80" y="80" fill="%23ffffff10"/></svg>');
50
+ background-size: 100px 100px;
51
+ }
52
+ </style>
53
+ </head>
54
+ <body class="bg-gray-900 text-white circuit-bg">
55
+ <!-- Navigation -->
56
+ <nav class="bg-gray-800 bg-opacity-90 backdrop-blur-md fixed w-full z-10">
57
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
58
+ <div class="flex items-center justify-between h-16">
59
+ <div class="flex items-center">
60
+ <div class="flex-shrink-0">
61
+ <div class="flex items-center">
62
+ <i class="fas fa-robot text-green-400 text-2xl mr-2"></i>
63
+ <span class="text-xl font-bold text-green-400">RoboTech</span>
64
+ </div>
65
+ </div>
66
+ <div class="hidden md:block">
67
+ <div class="ml-10 flex items-baseline space-x-4">
68
+ <a href="#" class="text-green-400 px-3 py-2 rounded-md text-sm font-medium">Home</a>
69
+ <a href="#" class="text-gray-300 hover:text-green-400 px-3 py-2 rounded-md text-sm font-medium">Products</a>
70
+ <a href="#" class="text-gray-300 hover:text-green-400 px-3 py-2 rounded-md text-sm font-medium">Services</a>
71
+ <a href="#" class="text-gray-300 hover:text-green-400 px-3 py-2 rounded-md text-sm font-medium">About</a>
72
+ <a href="#" class="text-gray-300 hover:text-green-400 px-3 py-2 rounded-md text-sm font-medium">Contact</a>
73
+ </div>
74
+ </div>
75
+ </div>
76
+ <div class="hidden md:block">
77
+ <div class="ml-4 flex items-center md:ml-6">
78
+ <button class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">
79
+ Get Started
80
+ </button>
81
+ </div>
82
+ </div>
83
+ <div class="-mr-2 flex md:hidden">
84
+ <button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
85
+ <span class="sr-only">Open main menu</span>
86
+ <i class="fas fa-bars"></i>
87
+ </button>
88
+ </div>
89
+ </div>
90
+ </div>
91
+
92
+ <!-- Mobile menu -->
93
+ <div class="hidden md:hidden" id="mobile-menu">
94
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
95
+ <a href="#" class="text-green-400 block px-3 py-2 rounded-md text-base font-medium">Home</a>
96
+ <a href="#" class="text-gray-300 hover:text-green-400 block px-3 py-2 rounded-md text-base font-medium">Products</a>
97
+ <a href="#" class="text-gray-300 hover:text-green-400 block px-3 py-2 rounded-md text-base font-medium">Services</a>
98
+ <a href="#" class="text-gray-300 hover:text-green-400 block px-3 py-2 rounded-md text-base font-medium">About</a>
99
+ <a href="#" class="text-gray-300 hover:text-green-400 block px-3 py-2 rounded-md text-base font-medium">Contact</a>
100
+ <button class="bg-green-500 hover:bg-green-600 text-white block w-full text-left px-3 py-2 rounded-md text-base font-medium mt-2">
101
+ Get Started
102
+ </button>
103
+ </div>
104
+ </div>
105
+ </nav>
106
+
107
+ <!-- Hero Section -->
108
+ <div class="relative pt-24 pb-20 px-4 sm:px-6 lg:pt-32 lg:pb-28 lg:px-8">
109
+ <div class="max-w-7xl mx-auto">
110
+ <div class="flex flex-col lg:flex-row items-center">
111
+ <div class="lg:w-1/2 mb-10 lg:mb-0">
112
+ <h1 class="text-4xl md:text-6xl font-extrabold tracking-tight text-white mb-6">
113
+ The Future of <span class="text-green-400">Robotics</span> is Here
114
+ </h1>
115
+ <p class="text-lg md:text-xl text-gray-300 mb-8">
116
+ Discover our cutting-edge robotic solutions designed to revolutionize industries and improve everyday life.
117
+ </p>
118
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
119
+ <button class="bg-green-500 hover:bg-green-600 text-white px-6 py-3 rounded-lg font-medium text-lg transition duration-300 transform hover:scale-105">
120
+ Explore Products
121
+ </button>
122
+ <button class="bg-transparent border-2 border-green-400 text-green-400 hover:bg-green-400 hover:text-white px-6 py-3 rounded-lg font-medium text-lg transition duration-300 transform hover:scale-105">
123
+ Watch Demo
124
+ </button>
125
+ </div>
126
+ </div>
127
+ <div class="lg:w-1/2 relative">
128
+ <div class="floating relative">
129
+ <div class="relative mx-auto" style="width: 300px; height: 400px;">
130
+ <!-- Robot Head -->
131
+ <div class="absolute top-0 left-1/2 transform -translate-x-1/2 w-48 h-48 bg-gray-700 rounded-full">
132
+ <!-- Eyes -->
133
+ <div class="absolute top-12 left-8 w-8 h-8 bg-green-400 rounded-full robot-eye" id="left-eye"></div>
134
+ <div class="absolute top-12 right-8 w-8 h-8 bg-green-400 rounded-full robot-eye" id="right-eye"></div>
135
+ <!-- Antenna -->
136
+ <div class="absolute -top-8 left-1/2 transform -translate-x-1/2 w-2 h-12 bg-gray-600 rounded-full"></div>
137
+ <div class="absolute -top-8 left-1/2 transform -translate-x-1/2 -translate-y-2 w-6 h-6 bg-green-400 rounded-full"></div>
138
+ </div>
139
+ <!-- Robot Body -->
140
+ <div class="absolute top-48 left-1/2 transform -translate-x-1/2 w-56 h-48 bg-gray-800 rounded-lg">
141
+ <!-- Chest Panel -->
142
+ <div class="absolute top-4 left-1/2 transform -translate-x-1/2 w-40 h-32 bg-gray-900 rounded-lg flex flex-col items-center justify-center">
143
+ <div class="w-32 h-4 bg-green-400 rounded-full mb-2"></div>
144
+ <div class="w-28 h-4 bg-green-400 rounded-full mb-2"></div>
145
+ <div class="w-24 h-4 bg-green-400 rounded-full"></div>
146
+ </div>
147
+ <!-- Arms -->
148
+ <div class="absolute top-16 -left-6 w-6 h-32 bg-gray-700 rounded-full"></div>
149
+ <div class="absolute top-16 -right-6 w-6 h-32 bg-gray-700 rounded-full"></div>
150
+ <!-- Hands -->
151
+ <div class="absolute top-44 -left-6 w-6 h-4 bg-gray-600 rounded-b-full"></div>
152
+ <div class="absolute top-44 -right-6 w-6 h-4 bg-gray-600 rounded-b-full"></div>
153
+ </div>
154
+ <!-- Robot Base -->
155
+ <div class="absolute top-96 left-1/2 transform -translate-x-1/2 w-64 h-8 bg-gray-700 rounded-full"></div>
156
+ <div class="absolute top-96 left-1/2 transform -translate-x-1/2 -translate-y-2 w-72 h-4 bg-gray-600 rounded-full"></div>
157
+ </div>
158
+ </div>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </div>
163
+
164
+ <!-- Features Section -->
165
+ <div class="py-16 bg-gray-800 bg-opacity-50">
166
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
167
+ <div class="text-center mb-16">
168
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-4">Advanced Robotic <span class="text-green-400">Technologies</span></h2>
169
+ <p class="text-lg text-gray-300 max-w-3xl mx-auto">Our robots are equipped with the latest AI and machine learning capabilities to perform complex tasks with precision.</p>
170
+ </div>
171
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
172
+ <div class="bg-gray-800 bg-opacity-70 p-8 rounded-xl hover:bg-gray-700 transition duration-300 transform hover:-translate-y-2">
173
+ <div class="w-16 h-16 bg-green-400 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
174
+ <i class="fas fa-brain text-green-400 text-2xl"></i>
175
+ </div>
176
+ <h3 class="text-xl font-bold text-white mb-3">AI Powered</h3>
177
+ <p class="text-gray-300">Our robots learn and adapt to their environment using advanced artificial intelligence algorithms.</p>
178
+ </div>
179
+ <div class="bg-gray-800 bg-opacity-70 p-8 rounded-xl hover:bg-gray-700 transition duration-300 transform hover:-translate-y-2">
180
+ <div class="w-16 h-16 bg-green-400 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
181
+ <i class="fas fa-hands-helping text-green-400 text-2xl"></i>
182
+ </div>
183
+ <h3 class="text-xl font-bold text-white mb-3">Human Collaboration</h3>
184
+ <p class="text-gray-300">Designed to work safely alongside humans with intuitive interaction capabilities.</p>
185
+ </div>
186
+ <div class="bg-gray-800 bg-opacity-70 p-8 rounded-xl hover:bg-gray-700 transition duration-300 transform hover:-translate-y-2">
187
+ <div class="w-16 h-16 bg-green-400 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
188
+ <i class="fas fa-tachometer-alt text-green-400 text-2xl"></i>
189
+ </div>
190
+ <h3 class="text-xl font-bold text-white mb-3">High Performance</h3>
191
+ <p class="text-gray-300">Engineered for maximum efficiency and productivity in industrial applications.</p>
192
+ </div>
193
+ <div class="bg-gray-800 bg-opacity-70 p-8 rounded-xl hover:bg-gray-700 transition duration-300 transform hover:-translate-y-2">
194
+ <div class="w-16 h-16 bg-green-400 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
195
+ <i class="fas fa-eye text-green-400 text-2xl"></i>
196
+ </div>
197
+ <h3 class="text-xl font-bold text-white mb-3">Computer Vision</h3>
198
+ <p class="text-gray-300">Advanced vision systems enable precise object recognition and manipulation.</p>
199
+ </div>
200
+ <div class="bg-gray-800 bg-opacity-70 p-8 rounded-xl hover:bg-gray-700 transition duration-300 transform hover:-translate-y-2">
201
+ <div class="w-16 h-16 bg-green-400 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
202
+ <i class="fas fa-network-wired text-green-400 text-2xl"></i>
203
+ </div>
204
+ <h3 class="text-xl font-bold text-white mb-3">IoT Integration</h3>
205
+ <p class="text-gray-300">Seamless connectivity with IoT devices for smart automation solutions.</p>
206
+ </div>
207
+ <div class="bg-gray-800 bg-opacity-70 p-8 rounded-xl hover:bg-gray-700 transition duration-300 transform hover:-translate-y-2">
208
+ <div class="w-16 h-16 bg-green-400 bg-opacity-20 rounded-lg flex items-center justify-center mb-6">
209
+ <i class="fas fa-shield-alt text-green-400 text-2xl"></i>
210
+ </div>
211
+ <h3 class="text-xl font-bold text-white mb-3">Secure Systems</h3>
212
+ <p class="text-gray-300">Military-grade encryption and security protocols to protect your data.</p>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Demo Section -->
219
+ <div class="py-20 px-4 sm:px-6 lg:px-8">
220
+ <div class="max-w-7xl mx-auto">
221
+ <div class="flex flex-col lg:flex-row items-center">
222
+ <div class="lg:w-1/2 mb-10 lg:mb-0 lg:pr-10">
223
+ <div class="terminal">
224
+ <div class="terminal-header flex items-center">
225
+ <div class="w-3 h-3 bg-red-500 rounded-full mr-2"></div>
226
+ <div class="w-3 h-3 bg-yellow-500 rounded-full mr-2"></div>
227
+ <div class="w-3 h-3 bg-green-500 rounded-full"></div>
228
+ <div class="ml-4 text-sm text-gray-300">robot_control_terminal</div>
229
+ </div>
230
+ <div class="terminal-body" id="terminal-output">
231
+ <div>> Initializing RoboTech systems...</div>
232
+ <div>> Loading AI modules...</div>
233
+ <div>> Establishing secure connection...</div>
234
+ <div>> Systems ready <span class="text-green-400">✓</span></div>
235
+ <div>> Welcome to RoboTech Control Interface</div>
236
+ <div>> Type 'help' for command list</div>
237
+ <div class="flex items-center"><span>> </span><span class="cursor">_</span></div>
238
+ </div>
239
+ </div>
240
+ </div>
241
+ <div class="lg:w-1/2">
242
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Interactive <span class="text-green-400">Control</span> Interface</h2>
243
+ <p class="text-lg text-gray-300 mb-6">
244
+ Manage your robotic fleet with our intuitive terminal interface. Monitor status, update firmware, and execute commands with simple text inputs.
245
+ </p>
246
+ <div class="grid grid-cols-1 sm:grid-cols-2 gap-4">
247
+ <div class="bg-gray-800 p-4 rounded-lg border-l-4 border-green-400">
248
+ <h3 class="font-bold text-white mb-2">Real-time Monitoring</h3>
249
+ <p class="text-gray-300 text-sm">Track performance metrics and system health in real-time.</p>
250
+ </div>
251
+ <div class="bg-gray-800 p-4 rounded-lg border-l-4 border-green-400">
252
+ <h3 class="font-bold text-white mb-2">Remote Control</h3>
253
+ <p class="text-gray-300 text-sm">Execute commands from anywhere with secure cloud access.</p>
254
+ </div>
255
+ </div>
256
+ <button class="mt-6 bg-green-500 hover:bg-green-600 text-white px-6 py-3 rounded-lg font-medium transition duration-300 flex items-center">
257
+ <i class="fas fa-terminal mr-2"></i> Try Live Demo
258
+ </button>
259
+ </div>
260
+ </div>
261
+ </div>
262
+ </div>
263
+
264
+ <!-- Products Section -->
265
+ <div class="py-16 bg-gray-800 bg-opacity-50">
266
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
267
+ <div class="text-center mb-16">
268
+ <h2 class="text-3xl md:text-4xl font-bold text-white mb-4">Our <span class="text-green-400">Robotic</span> Products</h2>
269
+ <p class="text-lg text-gray-300 max-w-3xl mx-auto">Explore our range of specialized robots designed for various applications.</p>
270
+ </div>
271
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
272
+ <div class="bg-gray-900 rounded-xl overflow-hidden hover:shadow-lg hover:shadow-green-400/20 transition duration-300 transform hover:-translate-y-2">
273
+ <div class="h-48 bg-gray-800 flex items-center justify-center">
274
+ <div class="w-32 h-32 bg-gray-700 rounded-full relative">
275
+ <div class="absolute top-4 left-1/2 transform -translate-x-1/2 w-8 h-8 bg-green-400 rounded-full"></div>
276
+ <div class="absolute top-24 left-1/2 transform -translate-x-1/2 w-16 h-4 bg-gray-600 rounded-full"></div>
277
+ </div>
278
+ </div>
279
+ <div class="p-6">
280
+ <h3 class="text-xl font-bold text-white mb-2">Home Assistant Bot</h3>
281
+ <p class="text-gray-300 mb-4">Your personal domestic helper for household chores and companionship.</p>
282
+ <div class="flex justify-between items-center">
283
+ <span class="text-green-400 font-bold">$1,299</span>
284
+ <button class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition duration-300">
285
+ Learn More
286
+ </button>
287
+ </div>
288
+ </div>
289
+ </div>
290
+ <div class="bg-gray-900 rounded-xl overflow-hidden hover:shadow-lg hover:shadow-green-400/20 transition duration-300 transform hover:-translate-y-2">
291
+ <div class="h-48 bg-gray-800 flex items-center justify-center">
292
+ <div class="w-40 h-32 bg-gray-700 rounded-lg relative">
293
+ <div class="absolute top-4 left-4 w-6 h-6 bg-green-400 rounded-full"></div>
294
+ <div class="absolute top-4 right-4 w-6 h-6 bg-green-400 rounded-full"></div>
295
+ <div class="absolute bottom-4 left-1/2 transform -translate-x-1/2 w-24 h-4 bg-gray-600 rounded-full"></div>
296
+ </div>
297
+ </div>
298
+ <div class="p-6">
299
+ <h3 class="text-xl font-bold text-white mb-2">Industrial Arm XR-45</h3>
300
+ <p class="text-gray-300 mb-4">Precision robotic arm for manufacturing and assembly lines.</p>
301
+ <div class="flex justify-between items-center">
302
+ <span class="text-green-400 font-bold">$8,499</span>
303
+ <button class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition duration-300">
304
+ Learn More
305
+ </button>
306
+ </div>
307
+ </div>
308
+ </div>
309
+ <div class="bg-gray-900 rounded-xl overflow-hidden hover:shadow-lg hover:shadow-green-400/20 transition duration-300 transform hover:-translate-y-2">
310
+ <div class="h-48 bg-gray-800 flex items-center justify-center">
311
+ <div class="w-32 h-40 bg-gray-700 rounded-lg relative">
312
+ <div class="absolute top-6 left-1/2 transform -translate-x-1/2 w-8 h-8 bg-green-400 rounded-full"></div>
313
+ <div class="absolute bottom-6 left-1/2 transform -translate-x-1/2 w-24 h-6 bg-gray-600 rounded-full"></div>
314
+ <div class="absolute bottom-2 left-1/2 transform -translate-x-1/2 w-28 h-2 bg-gray-500 rounded-full"></div>
315
+ </div>
316
+ </div>
317
+ <div class="p-6">
318
+ <h3 class="text-xl font-bold text-white mb-2">Explorer Drone Bot</h3>
319
+ <p class="text-gray-300 mb-4">Autonomous exploration robot for hazardous environments.</p>
320
+ <div class="flex justify-between items-center">
321
+ <span class="text-green-400 font-bold">$3,799</span>
322
+ <button class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded-lg text-sm font-medium transition duration-300">
323
+ Learn More
324
+ </button>
325
+ </div>
326
+ </div>
327
+ </div>
328
+ </div>
329
+ <div class="text-center mt-12">
330
+ <button class="bg-transparent border-2 border-green-400 text-green-400 hover:bg-green-400 hover:text-white px-8 py-3 rounded-lg font-medium text-lg transition duration-300">
331
+ View All Products
332
+ </button>
333
+ </div>
334
+ </div>
335
+ </div>
336
+
337
+ <!-- Newsletter Section -->
338
+ <div class="py-16 px-4 sm:px-6 lg:px-8">
339
+ <div class="max-w-3xl mx-auto bg-gray-800 rounded-xl p-8 md:p-10 text-center">
340
+ <h2 class="text-3xl font-bold text-white mb-4">Stay Updated</h2>
341
+ <p class="text-lg text-gray-300 mb-8">Subscribe to our newsletter for the latest in robotic technology and company updates.</p>
342
+ <div class="flex flex-col sm:flex-row gap-4 max-w-md mx-auto">
343
+ <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-lg bg-gray-700 text-white focus:outline-none focus:ring-2 focus:ring-green-400">
344
+ <button class="bg-green-500 hover:bg-green-600 text-white px-6 py-3 rounded-lg font-medium transition duration-300">
345
+ Subscribe
346
+ </button>
347
+ </div>
348
+ </div>
349
+ </div>
350
+
351
+ <!-- Footer -->
352
+ <footer class="bg-gray-800 pt-16 pb-8 px-4 sm:px-6 lg:px-8">
353
+ <div class="max-w-7xl mx-auto">
354
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-12">
355
+ <div>
356
+ <div class="flex items-center mb-4">
357
+ <i class="fas fa-robot text-green-400 text-2xl mr-2"></i>
358
+ <span class="text-xl font-bold text-green-400">RoboTech</span>
359
+ </div>
360
+ <p class="text-gray-300 mb-4">Pioneering the future of robotics with innovative solutions for home and industry.</p>
361
+ <div class="flex space-x-4">
362
+ <a href="#" class="text-gray-400 hover:text-green-400 transition duration-300">
363
+ <i class="fab fa-twitter text-xl"></i>
364
+ </a>
365
+ <a href="#" class="text-gray-400 hover:text-green-400 transition duration-300">
366
+ <i class="fab fa-facebook text-xl"></i>
367
+ </a>
368
+ <a href="#" class="text-gray-400 hover:text-green-400 transition duration-300">
369
+ <i class="fab fa-instagram text-xl"></i>
370
+ </a>
371
+ <a href="#" class="text-gray-400 hover:text-green-400 transition duration-300">
372
+ <i class="fab fa-linkedin text-xl"></i>
373
+ </a>
374
+ <a href="#" class="text-gray-400 hover:text-green-400 transition duration-300">
375
+ <i class="fab fa-youtube text-xl"></i>
376
+ </a>
377
+ </div>
378
+ </div>
379
+ <div>
380
+ <h3 class="text-lg font-bold text-white mb-4">Products</h3>
381
+ <ul class="space-y-2">
382
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Home Robots</a></li>
383
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Industrial Robots</a></li>
384
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Educational Kits</a></li>
385
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">AI Software</a></li>
386
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Accessories</a></li>
387
+ </ul>
388
+ </div>
389
+ <div>
390
+ <h3 class="text-lg font-bold text-white mb-4">Company</h3>
391
+ <ul class="space-y-2">
392
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">About Us</a></li>
393
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Careers</a></li>
394
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">News</a></li>
395
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Partners</a></li>
396
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Contact</a></li>
397
+ </ul>
398
+ </div>
399
+ <div>
400
+ <h3 class="text-lg font-bold text-white mb-4">Support</h3>
401
+ <ul class="space-y-2">
402
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Documentation</a></li>
403
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Community</a></li>
404
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Tutorials</a></li>
405
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">API Reference</a></li>
406
+ <li><a href="#" class="text-gray-300 hover:text-green-400 transition duration-300">Help Center</a></li>
407
+ </ul>
408
+ </div>
409
+ </div>
410
+ <div class="border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between items-center">
411
+ <p class="text-gray-400 mb-4 md:mb-0">© 2023 RoboTech. All rights reserved.</p>
412
+ <div class="flex space-x-6">
413
+ <a href="#" class="text-gray-400 hover:text-green-400 transition duration-300">Privacy Policy</a>
414
+ <a href="#" class="text-gray-400 hover:text-green-400 transition duration-300">Terms of Service</a>
415
+ <a href="#" class="text-gray-400 hover:text-green-400 transition duration-300">Cookies</a>
416
+ </div>
417
+ </div>
418
+ </div>
419
+ </footer>
420
+
421
+ <script>
422
+ // Mobile menu toggle
423
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
424
+ const menu = document.getElementById('mobile-menu');
425
+ menu.classList.toggle('hidden');
426
+ });
427
+
428
+ // Robot eye follow mouse
429
+ document.addEventListener('mousemove', function(e) {
430
+ const leftEye = document.getElementById('left-eye');
431
+ const rightEye = document.getElementById('right-eye');
432
+
433
+ // Calculate eye position relative to viewport
434
+ const rectLeft = leftEye.getBoundingClientRect();
435
+ const rectRight = rightEye.getBoundingClientRect();
436
+
437
+ // Center of eyes
438
+ const leftCenterX = rectLeft.left + rectLeft.width / 2;
439
+ const leftCenterY = rectLeft.top + rectLeft.height / 2;
440
+ const rightCenterX = rectRight.left + rectRight.width / 2;
441
+ const rightCenterY = rectRight.top + rectRight.height / 2;
442
+
443
+ // Calculate angle between eye center and mouse position
444
+ const angleLeft = Math.atan2(e.clientY - leftCenterY, e.clientX - leftCenterX);
445
+ const angleRight = Math.atan2(e.clientY - rightCenterY, e.clientX - rightCenterX);
446
+
447
+ // Calculate new pupil position (limited to stay within eye)
448
+ const distance = 5;
449
+ const leftX = Math.cos(angleLeft) * distance;
450
+ const leftY = Math.sin(angleLeft) * distance;
451
+ const rightX = Math.cos(angleRight) * distance;
452
+ const rightY = Math.sin(angleRight) * distance;
453
+
454
+ // Apply transform
455
+ leftEye.style.transform = `translate(${leftX}px, ${leftY}px)`;
456
+ rightEye.style.transform = `translate(${rightX}px, ${rightY}px)`;
457
+ });
458
+
459
+ // Terminal animation
460
+ const terminalLines = [
461
+ "> help",
462
+ "Available commands:",
463
+ "status - Show system status",
464
+ "update - Check for updates",
465
+ "run [task] - Execute specified task",
466
+ "monitor - Open real-time monitor",
467
+ "exit - Close terminal session",
468
+ "> ",
469
+ "> status",
470
+ "System: Online",
471
+ "Battery: 98%",
472
+ "Tasks: 3 running",
473
+ "Memory: 4.2/8.0 GB",
474
+ "CPU: 34%",
475
+ "Network: Connected",
476
+ "> ",
477
+ "> monitor",
478
+ "Opening real-time monitoring dashboard...",
479
+ "> "
480
+ ];
481
+
482
+ let currentLine = 0;
483
+ const terminalOutput = document.getElementById('terminal-output');
484
+
485
+ function addTerminalLine() {
486
+ if (currentLine < terminalLines.length) {
487
+ const line = document.createElement('div');
488
+ line.textContent = terminalLines[currentLine];
489
+
490
+ // Remove cursor from previous line
491
+ const cursor = terminalOutput.querySelector('.cursor');
492
+ if (cursor) cursor.remove();
493
+
494
+ terminalOutput.appendChild(line);
495
+
496
+ // Add cursor to new line if it ends with "> "
497
+ if (terminalLines[currentLine].endsWith("> ")) {
498
+ const cursorLine = document.createElement('div');
499
+ cursorLine.className = 'flex items-center';
500
+ cursorLine.innerHTML = '<span>> </span><span class="cursor">_</span>';
501
+ terminalOutput.appendChild(cursorLine);
502
+ }
503
+
504
+ currentLine++;
505
+ terminalOutput.scrollTop = terminalOutput.scrollHeight;
506
+
507
+ // Schedule next line
508
+ setTimeout(addTerminalLine, Math.random() * 1000 + 500);
509
+ } else {
510
+ // Reset animation after a delay
511
+ setTimeout(() => {
512
+ terminalOutput.innerHTML = `
513
+ <div>> System restarting...</div>
514
+ <div>> Reinitializing RoboTech systems...</div>
515
+ <div>> Loading AI modules...</div>
516
+ <div>> Establishing secure connection...</div>
517
+ <div>> Systems ready <span class="text-green-400">✓</span></div>
518
+ <div>> Welcome to RoboTech Control Interface</div>
519
+ <div>> Type 'help' for command list</div>
520
+ <div class="flex items-center"><span>> </span><span class="cursor">_</span></div>
521
+ `;
522
+ currentLine = 0;
523
+ setTimeout(addTerminalLine, 3000);
524
+ }, 3000);
525
+ }
526
+ }
527
+
528
+ // Start terminal animation after a delay
529
+ setTimeout(addTerminalLine, 2000);
530
+
531
+ // Glow effect on hover for buttons
532
+ const buttons = document.querySelectorAll('button');
533
+ buttons.forEach(button => {
534
+ button.addEventListener('mouseenter', () => {
535
+ if (button.classList.contains('bg-green-500')) {
536
+ button.classList.add('glow');
537
+ }
538
+ });
539
+ button.addEventListener('mouseleave', () => {
540
+ button.classList.remove('glow');
541
+ });
542
+ });
543
+ </script>
544
+ <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=observabot/robot-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
545
+ </html>