OrcsRise commited on
Commit
c4661a0
·
verified ·
1 Parent(s): 6cec99f

create a website for an embedded software team. website name is NineTech - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +608 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ninetech
3
- emoji: 💻
4
- colorFrom: pink
5
- colorTo: pink
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: ninetech
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: gray
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,608 @@
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>NineTech - Embedded Software Solutions</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#1a365d',
15
+ secondary: '#2c5282',
16
+ accent: '#3182ce',
17
+ dark: '#0f172a',
18
+ light: '#f8fafc'
19
+ }
20
+ }
21
+ }
22
+ }
23
+ </script>
24
+ <style>
25
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
26
+ body {
27
+ font-family: 'Inter', sans-serif;
28
+ scroll-behavior: smooth;
29
+ }
30
+ .hero-bg {
31
+ background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
32
+ }
33
+ .service-card:hover {
34
+ transform: translateY(-10px);
35
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
36
+ }
37
+ .team-card:hover {
38
+ transform: scale(1.03);
39
+ }
40
+ .pulse {
41
+ animation: pulse 2s infinite;
42
+ }
43
+ @keyframes pulse {
44
+ 0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
45
+ 70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
46
+ 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
47
+ }
48
+ .parallax {
49
+ background-attachment: fixed;
50
+ background-position: center;
51
+ background-repeat: no-repeat;
52
+ background-size: cover;
53
+ }
54
+ .tech-icon {
55
+ transition: all 0.3s ease;
56
+ }
57
+ .tech-icon:hover {
58
+ transform: scale(1.2);
59
+ color: #3182ce;
60
+ }
61
+ </style>
62
+ </head>
63
+ <body class="bg-light text-dark">
64
+ <!-- Navigation -->
65
+ <nav class="fixed w-full bg-white shadow-md z-50">
66
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
67
+ <div class="flex justify-between h-20">
68
+ <div class="flex items-center">
69
+ <div class="flex-shrink-0 flex items-center">
70
+ <div class="bg-accent w-10 h-10 rounded-lg flex items-center justify-center">
71
+ <i class="fas fa-microchip text-white text-xl"></i>
72
+ </div>
73
+ <span class="ml-3 text-2xl font-bold text-primary">Nine<span class="text-accent">Tech</span></span>
74
+ </div>
75
+ </div>
76
+ <div class="hidden md:flex items-center space-x-8">
77
+ <a href="#home" class="text-primary hover:text-accent font-medium">Home</a>
78
+ <a href="#services" class="text-primary hover:text-accent font-medium">Services</a>
79
+ <a href="#team" class="text-primary hover:text-accent font-medium">Team</a>
80
+ <a href="#projects" class="text-primary hover:text-accent font-medium">Projects</a>
81
+ <a href="#contact" class="text-primary hover:text-accent font-medium">Contact</a>
82
+ </div>
83
+ <div class="flex items-center md:hidden">
84
+ <button id="mobile-menu-button" class="text-primary hover:text-accent">
85
+ <i class="fas fa-bars text-2xl"></i>
86
+ </button>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ <!-- Mobile menu -->
91
+ <div id="mobile-menu" class="hidden md:hidden bg-white py-2 px-4 shadow-lg">
92
+ <a href="#home" class="block py-2 text-primary hover:text-accent">Home</a>
93
+ <a href="#services" class="block py-2 text-primary hover:text-accent">Services</a>
94
+ <a href="#team" class="block py-2 text-primary hover:text-accent">Team</a>
95
+ <a href="#projects" class="block py-2 text-primary hover:text-accent">Projects</a>
96
+ <a href="#contact" class="block py-2 text-primary hover:text-accent">Contact</a>
97
+ </div>
98
+ </nav>
99
+
100
+ <!-- Hero Section -->
101
+ <section id="home" class="hero-bg pt-32 pb-20">
102
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
103
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
104
+ <div class="text-white">
105
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight">
106
+ Embedded Software Solutions for the Future
107
+ </h1>
108
+ <p class="mt-6 text-xl text-blue-100 max-w-2xl">
109
+ NineTech delivers cutting-edge embedded software development for IoT, automotive, industrial, and consumer electronics.
110
+ </p>
111
+ <div class="mt-10 flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
112
+ <a href="#contact" class="bg-accent hover:bg-blue-600 text-white font-bold py-3 px-8 rounded-lg transition duration-300 text-center">
113
+ Get Started
114
+ </a>
115
+ <a href="#services" class="bg-transparent border-2 border-white hover:bg-white hover:text-primary text-white font-bold py-3 px-8 rounded-lg transition duration-300 text-center">
116
+ Our Services
117
+ </a>
118
+ </div>
119
+ </div>
120
+ <div class="flex justify-center">
121
+ <div class="relative">
122
+ <div class="w-64 h-64 md:w-80 md:h-80 bg-accent rounded-full absolute -top-6 -left-6 opacity-20"></div>
123
+ <div class="w-64 h-64 md:w-80 md:h-80 bg-accent rounded-full absolute -bottom-6 -right-6 opacity-20"></div>
124
+ <div class="relative bg-white rounded-2xl shadow-xl p-2">
125
+ <div class="bg-gray-800 rounded-xl p-6">
126
+ <div class="flex justify-between mb-4">
127
+ <div class="text-green-400 font-mono text-sm">Embedded System</div>
128
+ <div class="flex space-x-2">
129
+ <div class="w-3 h-3 bg-red-500 rounded-full"></div>
130
+ <div class="w-3 h-3 bg-yellow-500 rounded-full"></div>
131
+ <div class="w-3 h-3 bg-green-500 rounded-full"></div>
132
+ </div>
133
+ </div>
134
+ <div class="font-mono text-green-400 text-sm">
135
+ <div class="mb-1">$ <span class="animate-pulse">_</span></div>
136
+ <div class="mb-1">Initializing NineTech system...</div>
137
+ <div class="mb-1">Loading embedded modules...</div>
138
+ <div class="mb-1">System ready. Welcome to NineTech!</div>
139
+ <div class="flex">
140
+ <span class="text-blue-400">nine@tech:~$ </span>
141
+ <span class="ml-1 animate-pulse">|</span>
142
+ </div>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ </div>
149
+ </div>
150
+ </section>
151
+
152
+ <!-- Services Section -->
153
+ <section id="services" class="py-20 bg-white">
154
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
155
+ <div class="text-center mb-16">
156
+ <h2 class="text-3xl md:text-4xl font-bold text-primary">Our Services</h2>
157
+ <p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
158
+ Comprehensive embedded software solutions tailored to your specific requirements
159
+ </p>
160
+ </div>
161
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
162
+ <!-- Service 1 -->
163
+ <div class="service-card bg-light rounded-xl p-8 shadow-lg border border-gray-100 transition-all duration-300">
164
+ <div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
165
+ <i class="fas fa-microchip text-accent text-2xl"></i>
166
+ </div>
167
+ <h3 class="text-2xl font-bold text-primary mb-3">Firmware Development</h3>
168
+ <p class="text-gray-600 mb-4">
169
+ Custom firmware solutions for microcontrollers and embedded processors, optimized for performance and reliability.
170
+ </p>
171
+ <ul class="space-y-2">
172
+ <li class="flex items-center">
173
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
174
+ <span>RTOS Implementation</span>
175
+ </li>
176
+ <li class="flex items-center">
177
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
178
+ <span>Device Drivers</span>
179
+ </li>
180
+ <li class="flex items-center">
181
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
182
+ <span>Bootloader Design</span>
183
+ </li>
184
+ </ul>
185
+ </div>
186
+
187
+ <!-- Service 2 -->
188
+ <div class="service-card bg-light rounded-xl p-8 shadow-lg border border-gray-100 transition-all duration-300">
189
+ <div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
190
+ <i class="fas fa-network-wired text-accent text-2xl"></i>
191
+ </div>
192
+ <h3 class="text-2xl font-bold text-primary mb-3">IoT Integration</h3>
193
+ <p class="text-gray-600 mb-4">
194
+ Seamless connectivity solutions for IoT devices with secure communication protocols.
195
+ </p>
196
+ <ul class="space-y-2">
197
+ <li class="flex items-center">
198
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
199
+ <span>WiFi/Bluetooth Modules</span>
200
+ </li>
201
+ <li class="flex items-center">
202
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
203
+ <span>Cloud Integration</span>
204
+ </li>
205
+ <li class="flex items-center">
206
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
207
+ <span>Edge Computing</span>
208
+ </li>
209
+ </ul>
210
+ </div>
211
+
212
+ <!-- Service 3 -->
213
+ <div class="service-card bg-light rounded-xl p-8 shadow-lg border border-gray-100 transition-all duration-300">
214
+ <div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
215
+ <i class="fas fa-shield-alt text-accent text-2xl"></i>
216
+ </div>
217
+ <h3 class="text-2xl font-bold text-primary mb-3">Security Solutions</h3>
218
+ <p class="text-gray-600 mb-4">
219
+ Robust security implementations to protect your embedded systems from vulnerabilities.
220
+ </p>
221
+ <ul class="space-y-2">
222
+ <li class="flex items-center">
223
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
224
+ <span>Secure Boot</span>
225
+ </li>
226
+ <li class="flex items-center">
227
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
228
+ <span>Encryption Protocols</span>
229
+ </li>
230
+ <li class="flex items-center">
231
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
232
+ <span>Firmware Updates</span>
233
+ </li>
234
+ </ul>
235
+ </div>
236
+ </div>
237
+ </div>
238
+ </section>
239
+
240
+ <!-- Technologies Section -->
241
+ <section class="py-16 bg-gray-50">
242
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
243
+ <div class="text-center mb-12">
244
+ <h2 class="text-3xl md:text-4xl font-bold text-primary">Technologies We Work With</h2>
245
+ <p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
246
+ Our team has expertise across a wide range of embedded technologies
247
+ </p>
248
+ </div>
249
+ <div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-6 gap-8">
250
+ <div class="tech-icon flex flex-col items-center">
251
+ <i class="fab fa-microchip text-5xl text-gray-700 mb-3"></i>
252
+ <span class="text-gray-700 font-medium">ARM</span>
253
+ </div>
254
+ <div class="tech-icon flex flex-col items-center">
255
+ <i class="fab fa-raspberry-pi text-5xl text-gray-700 mb-3"></i>
256
+ <span class="text-gray-700 font-medium">Raspberry Pi</span>
257
+ </div>
258
+ <div class="tech-icon flex flex-col items-center">
259
+ <i class="fab fa-arduino text-5xl text-gray-700 mb-3"></i>
260
+ <span class="text-gray-700 font-medium">Arduino</span>
261
+ </div>
262
+ <div class="tech-icon flex flex-col items-center">
263
+ <i class="fab fa-linux text-5xl text-gray-700 mb-3"></i>
264
+ <span class="text-gray-700 font-medium">Linux</span>
265
+ </div>
266
+ <div class="tech-icon flex flex-col items-center">
267
+ <i class="fas fa-bluetooth text-5xl text-gray-700 mb-3"></i>
268
+ <span class="text-gray-700 font-medium">Bluetooth</span>
269
+ </div>
270
+ <div class="tech-icon flex flex-col items-center">
271
+ <i class="fas fa-wifi text-5xl text-gray-700 mb-3"></i>
272
+ <span class="text-gray-700 font-medium">WiFi</span>
273
+ </div>
274
+ </div>
275
+ </div>
276
+ </section>
277
+
278
+ <!-- Team Section -->
279
+ <section id="team" class="py-20 bg-white">
280
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
281
+ <div class="text-center mb-16">
282
+ <h2 class="text-3xl md:text-4xl font-bold text-primary">Meet Our Team</h2>
283
+ <p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
284
+ Passionate engineers dedicated to excellence in embedded software development
285
+ </p>
286
+ </div>
287
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
288
+ <!-- Team Member 1 -->
289
+ <div class="team-card bg-light rounded-xl overflow-hidden shadow-lg transition-all duration-300">
290
+ <div class="h-48 bg-gradient-to-r from-blue-500 to-indigo-600"></div>
291
+ <div class="p-6 text-center">
292
+ <div class="relative -mt-16 mb-4">
293
+ <img class="w-24 h-24 rounded-full border-4 border-white mx-auto" src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=300&q=80" alt="Team Member">
294
+ </div>
295
+ <h3 class="text-xl font-bold text-primary">Alex Morgan</h3>
296
+ <p class="text-accent mb-3">Lead Embedded Engineer</p>
297
+ <p class="text-gray-600 text-sm">
298
+ 12+ years experience in firmware development for automotive and industrial systems.
299
+ </p>
300
+ <div class="mt-4 flex justify-center space-x-3">
301
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-linkedin-in"></i></a>
302
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-github"></i></a>
303
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-twitter"></i></a>
304
+ </div>
305
+ </div>
306
+ </div>
307
+
308
+ <!-- Team Member 2 -->
309
+ <div class="team-card bg-light rounded-xl overflow-hidden shadow-lg transition-all duration-300">
310
+ <div class="h-48 bg-gradient-to-r from-blue-500 to-indigo-600"></div>
311
+ <div class="p-6 text-center">
312
+ <div class="relative -mt-16 mb-4">
313
+ <img class="w-24 h-24 rounded-full border-4 border-white mx-auto" src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=300&q=80" alt="Team Member">
314
+ </div>
315
+ <h3 class="text-xl font-bold text-primary">Sarah Johnson</h3>
316
+ <p class="text-accent mb-3">IoT Solutions Architect</p>
317
+ <p class="text-gray-600 text-sm">
318
+ Specializes in wireless communication protocols and cloud integration for smart devices.
319
+ </p>
320
+ <div class="mt-4 flex justify-center space-x-3">
321
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-linkedin-in"></i></a>
322
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-github"></i></a>
323
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-twitter"></i></a>
324
+ </div>
325
+ </div>
326
+ </div>
327
+
328
+ <!-- Team Member 3 -->
329
+ <div class="team-card bg-light rounded-xl overflow-hidden shadow-lg transition-all duration-300">
330
+ <div class="h-48 bg-gradient-to-r from-blue-500 to-indigo-600"></div>
331
+ <div class="p-6 text-center">
332
+ <div class="relative -mt-16 mb-4">
333
+ <img class="w-24 h-24 rounded-full border-4 border-white mx-auto" src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=300&q=80" alt="Team Member">
334
+ </div>
335
+ <h3 class="text-xl font-bold text-primary">Michael Chen</h3>
336
+ <p class="text-accent mb-3">Firmware Engineer</p>
337
+ <p class="text-gray-600 text-sm">
338
+ Expert in real-time operating systems and low-level device driver development.
339
+ </p>
340
+ <div class="mt-4 flex justify-center space-x-3">
341
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-linkedin-in"></i></a>
342
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-github"></i></a>
343
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-twitter"></i></a>
344
+ </div>
345
+ </div>
346
+ </div>
347
+
348
+ <!-- Team Member 4 -->
349
+ <div class="team-card bg-light rounded-xl overflow-hidden shadow-lg transition-all duration-300">
350
+ <div class="h-48 bg-gradient-to-r from-blue-500 to-indigo-600"></div>
351
+ <div class="p-6 text-center">
352
+ <div class="relative -mt-16 mb-4">
353
+ <img class="w-24 h-24 rounded-full border-4 border-white mx-auto" src="https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=300&q=80" alt="Team Member">
354
+ </div>
355
+ <h3 class="text-xl font-bold text-primary">Elena Rodriguez</h3>
356
+ <p class="text-accent mb-3">Security Specialist</p>
357
+ <p class="text-gray-600 text-sm">
358
+ Focuses on embedded system security, encryption, and secure communication protocols.
359
+ </p>
360
+ <div class="mt-4 flex justify-center space-x-3">
361
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-linkedin-in"></i></a>
362
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-github"></i></a>
363
+ <a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-twitter"></i></a>
364
+ </div>
365
+ </div>
366
+ </div>
367
+ </div>
368
+ </div>
369
+ </section>
370
+
371
+ <!-- Projects Section -->
372
+ <section id="projects" class="py-20 bg-gray-50">
373
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
374
+ <div class="text-center mb-16">
375
+ <h2 class="text-3xl md:text-4xl font-bold text-primary">Our Projects</h2>
376
+ <p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
377
+ Real-world applications of our embedded software expertise
378
+ </p>
379
+ </div>
380
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-10">
381
+ <!-- Project 1 -->
382
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg">
383
+ <div class="h-64 bg-gradient-to-r from-blue-600 to-indigo-700 flex items-center justify-center">
384
+ <i class="fas fa-car text-white text-7xl"></i>
385
+ </div>
386
+ <div class="p-8">
387
+ <h3 class="text-2xl font-bold text-primary mb-3">Autonomous Vehicle Control System</h3>
388
+ <p class="text-gray-600 mb-4">
389
+ Developed a real-time control system for autonomous vehicles with sensor fusion and decision-making algorithms.
390
+ </p>
391
+ <div class="flex flex-wrap gap-2 mb-4">
392
+ <span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">C++</span>
393
+ <span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">ROS</span>
394
+ <span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Computer Vision</span>
395
+ <span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Sensor Fusion</span>
396
+ </div>
397
+ <a href="#" class="text-accent font-medium flex items-center">
398
+ View Case Study
399
+ <i class="fas fa-arrow-right ml-2 text-sm"></i>
400
+ </a>
401
+ </div>
402
+ </div>
403
+
404
+ <!-- Project 2 -->
405
+ <div class="bg-white rounded-xl overflow-hidden shadow-lg">
406
+ <div class="h-64 bg-gradient-to-r from-green-500 to-teal-600 flex items-center justify-center">
407
+ <i class="fas fa-home text-white text-7xl"></i>
408
+ </div>
409
+ <div class="p-8">
410
+ <h3 class="text-2xl font-bold text-primary mb-3">Smart Home IoT Platform</h3>
411
+ <p class="text-gray-600 mb-4">
412
+ Created a comprehensive IoT platform for smart home automation with energy management and security features.
413
+ </p>
414
+ <div class="flex flex-wrap gap-2 mb-4">
415
+ <span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">ESP32</span>
416
+ <span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">MQTT</span>
417
+ <span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">AWS IoT</span>
418
+ <span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Mobile App</span>
419
+ </div>
420
+ <a href="#" class="text-accent font-medium flex items-center">
421
+ View Case Study
422
+ <i class="fas fa-arrow-right ml-2 text-sm"></i>
423
+ </a>
424
+ </div>
425
+ </div>
426
+ </div>
427
+ </div>
428
+ </section>
429
+
430
+ <!-- Contact Section -->
431
+ <section id="contact" class="py-20 bg-white">
432
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
433
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-16">
434
+ <div>
435
+ <h2 class="text-3xl md:text-4xl font-bold text-primary mb-6">Get In Touch</h2>
436
+ <p class="text-xl text-gray-600 mb-8">
437
+ Have a project in mind? Let's discuss how we can help bring your embedded software vision to life.
438
+ </p>
439
+ <div class="space-y-6">
440
+ <div class="flex items-start">
441
+ <div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg">
442
+ <i class="fas fa-map-marker-alt text-accent text-xl"></i>
443
+ </div>
444
+ <div class="ml-4">
445
+ <h3 class="text-lg font-bold text-primary">Our Location</h3>
446
+ <p class="text-gray-600 mt-1">123 Innovation Drive, Tech Park, San Francisco, CA 94103</p>
447
+ </div>
448
+ </div>
449
+ <div class="flex items-start">
450
+ <div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg">
451
+ <i class="fas fa-envelope text-accent text-xl"></i>
452
+ </div>
453
+ <div class="ml-4">
454
+ <h3 class="text-lg font-bold text-primary">Email Us</h3>
455
+ <p class="text-gray-600 mt-1">contact@ninetech.io</p>
456
+ </div>
457
+ </div>
458
+ <div class="flex items-start">
459
+ <div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg">
460
+ <i class="fas fa-phone-alt text-accent text-xl"></i>
461
+ </div>
462
+ <div class="ml-4">
463
+ <h3 class="text-lg font-bold text-primary">Call Us</h3>
464
+ <p class="text-gray-600 mt-1">+1 (555) 123-4567</p>
465
+ </div>
466
+ </div>
467
+ </div>
468
+ </div>
469
+ <div class="bg-gray-50 rounded-xl p-8 shadow-lg">
470
+ <form>
471
+ <div class="grid grid-cols-1 sm:grid-cols-2 gap-6 mb-6">
472
+ <div>
473
+ <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
474
+ <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-accent focus:border-accent">
475
+ </div>
476
+ <div>
477
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
478
+ <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-accent focus:border-accent">
479
+ </div>
480
+ </div>
481
+ <div class="mb-6">
482
+ <label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label>
483
+ <input type="text" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-accent focus:border-accent">
484
+ </div>
485
+ <div class="mb-6">
486
+ <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
487
+ <textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-accent focus:border-accent"></textarea>
488
+ </div>
489
+ <button type="submit" class="w-full bg-accent hover:bg-blue-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300">
490
+ Send Message
491
+ </button>
492
+ </form>
493
+ </div>
494
+ </div>
495
+ </div>
496
+ </section>
497
+
498
+ <!-- Footer -->
499
+ <footer class="bg-dark text-white pt-16 pb-8">
500
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
501
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-10 mb-12">
502
+ <div>
503
+ <div class="flex items-center mb-6">
504
+ <div class="bg-accent w-10 h-10 rounded-lg flex items-center justify-center">
505
+ <i class="fas fa-microchip text-white text-xl"></i>
506
+ </div>
507
+ <span class="ml-3 text-2xl font-bold">Nine<span class="text-accent">Tech</span></span>
508
+ </div>
509
+ <p class="text-gray-400 mb-6">
510
+ Leading embedded software solutions for innovative companies worldwide.
511
+ </p>
512
+ <div class="flex space-x-4">
513
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
514
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-github"></i></a>
515
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
516
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
517
+ </div>
518
+ </div>
519
+ <div>
520
+ <h3 class="text-lg font-bold mb-6">Services</h3>
521
+ <ul class="space-y-3">
522
+ <li><a href="#" class="text-gray-400 hover:text-white">Firmware Development</a></li>
523
+ <li><a href="#" class="text-gray-400 hover:text-white">IoT Integration</a></li>
524
+ <li><a href="#" class="text-gray-400 hover:text-white">Security Solutions</a></li>
525
+ <li><a href="#" class="text-gray-400 hover:text-white">System Architecture</a></li>
526
+ <li><a href="#" class="text-gray-400 hover:text-white">Product Development</a></li>
527
+ </ul>
528
+ </div>
529
+ <div>
530
+ <h3 class="text-lg font-bold mb-6">Company</h3>
531
+ <ul class="space-y-3">
532
+ <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
533
+ <li><a href="#" class="text-gray-400 hover:text-white">Our Team</a></li>
534
+ <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
535
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
536
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
537
+ </ul>
538
+ </div>
539
+ <div>
540
+ <h3 class="text-lg font-bold mb-6">Newsletter</h3>
541
+ <p class="text-gray-400 mb-4">
542
+ Subscribe to our newsletter for the latest updates and insights.
543
+ </p>
544
+ <form class="flex">
545
+ <input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-lg focus:outline-none text-gray-800">
546
+ <button class="bg-accent hover:bg-blue-600 px-4 rounded-r-lg">
547
+ <i class="fas fa-paper-plane text-white"></i>
548
+ </button>
549
+ </form>
550
+ </div>
551
+ </div>
552
+ <div class="border-t border-gray-800 pt-8 text-center text-gray-500">
553
+ <p>&copy; 2023 NineTech. All rights reserved.</p>
554
+ </div>
555
+ </div>
556
+ </footer>
557
+
558
+ <script>
559
+ // Mobile menu toggle
560
+ const mobileMenuButton = document.getElementById('mobile-menu-button');
561
+ const mobileMenu = document.getElementById('mobile-menu');
562
+
563
+ mobileMenuButton.addEventListener('click', () => {
564
+ mobileMenu.classList.toggle('hidden');
565
+ });
566
+
567
+ // Smooth scrolling for anchor links
568
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
569
+ anchor.addEventListener('click', function (e) {
570
+ e.preventDefault();
571
+
572
+ const target = document.querySelector(this.getAttribute('href'));
573
+ if (target) {
574
+ window.scrollTo({
575
+ top: target.offsetTop - 80,
576
+ behavior: 'smooth'
577
+ });
578
+
579
+ // Close mobile menu if open
580
+ if (!mobileMenu.classList.contains('hidden')) {
581
+ mobileMenu.classList.add('hidden');
582
+ }
583
+ }
584
+ });
585
+ });
586
+
587
+ // Add scroll animation to elements
588
+ const observerOptions = {
589
+ root: null,
590
+ rootMargin: '0px',
591
+ threshold: 0.1
592
+ };
593
+
594
+ const observer = new IntersectionObserver((entries) => {
595
+ entries.forEach(entry => {
596
+ if (entry.isIntersecting) {
597
+ entry.target.classList.add('animate-fade-in-up');
598
+ observer.unobserve(entry.target);
599
+ }
600
+ });
601
+ }, observerOptions);
602
+
603
+ document.querySelectorAll('.service-card, .team-card').forEach(card => {
604
+ observer.observe(card);
605
+ });
606
+ </script>
607
+ <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=OrcsRise/ninetech" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
608
+ </html>