richieeee732 commited on
Commit
bc62b38
verified
1 Parent(s): 55d6471

I NEED YOU TO CHANGE THE INFORMATION SINCE IT IS ABOUT AN AUTOMOBILE SERVICE SHOP USING THE NAME LOS PITS - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +486 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Pitswebpage
3
- emoji: 馃弳
4
- colorFrom: indigo
5
- colorTo: indigo
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: pitswebpage
3
+ emoji: 馃惓
4
+ colorFrom: pink
5
+ colorTo: blue
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,486 @@
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="es">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Nexus | Soluciones Digitales</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
+ .hero-gradient {
11
+ background: linear-gradient(135deg, #e63946 0%, #a4161a 100%);
12
+ }
13
+ .feature-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .animate-float {
18
+ animation: float 3s ease-in-out infinite;
19
+ }
20
+ @keyframes float {
21
+ 0%, 100% {
22
+ transform: translateY(0);
23
+ }
24
+ 50% {
25
+ transform: translateY(-10px);
26
+ }
27
+ }
28
+ </style>
29
+ </head>
30
+ <body class="font-sans antialiased text-gray-800">
31
+ <!-- Navbar -->
32
+ <nav class="bg-white shadow-lg fixed w-full z-50">
33
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
34
+ <div class="flex justify-between h-16">
35
+ <div class="flex items-center">
36
+ <div class="flex-shrink-0 flex items-center">
37
+ <i class="fas fa-car text-red-600 text-2xl mr-2"></i>
38
+ <span class="text-xl font-bold text-gray-900">LOS PITS</span>
39
+ </div>
40
+ </div>
41
+ <div class="hidden md:flex items-center space-x-8">
42
+ <a href="#inicio" class="text-gray-900 hover:text-indigo-600 px-3 py-2 font-medium">Inicio</a>
43
+ <a href="#servicios" class="text-gray-900 hover:text-indigo-600 px-3 py-2 font-medium">Servicios</a>
44
+ <a href="#nosotros" class="text-gray-900 hover:text-indigo-600 px-3 py-2 font-medium">Nosotros</a>
45
+ <a href="#contacto" class="text-gray-900 hover:text-indigo-600 px-3 py-2 font-medium">Contacto</a>
46
+ <button class="bg-indigo-600 text-white px-6 py-2 rounded-md font-medium hover:bg-indigo-700 transition duration-300">
47
+ Prueba Gratis
48
+ </button>
49
+ </div>
50
+ <div class="md:hidden flex items-center">
51
+ <button id="menu-btn" class="text-gray-900">
52
+ <i class="fas fa-bars text-2xl"></i>
53
+ </button>
54
+ </div>
55
+ </div>
56
+ </div>
57
+
58
+ <!-- Mobile menu -->
59
+ <div id="mobile-menu" class="hidden md:hidden bg-white pb-3 px-4 shadow-lg">
60
+ <a href="#inicio" class="block px-3 py-2 text-gray-900 hover:text-indigo-600">Inicio</a>
61
+ <a href="#servicios" class="block px-3 py-2 text-gray-900 hover:text-indigo-600">Servicios</a>
62
+ <a href="#nosotros" class="block px-3 py-2 text-gray-900 hover:text-indigo-600">Nosotros</a>
63
+ <a href="#contacto" class="block px-3 py-2 text-gray-900 hover:text-indigo-600">Contacto</a>
64
+ <button class="mt-2 w-full bg-indigo-600 text-white px-6 py-2 rounded-md font-medium hover:bg-indigo-700 transition duration-300">
65
+ Prueba Gratis
66
+ </button>
67
+ </div>
68
+ </nav>
69
+
70
+ <!-- Hero Section -->
71
+ <section id="inicio" class="hero-gradient pt-24 pb-32 text-white">
72
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
73
+ <div class="md:flex items-center justify-between">
74
+ <div class="md:w-1/2 mb-12 md:mb-0">
75
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Expertos en servicio automotriz de calidad</h1>
76
+ <p class="text-xl mb-8 opacity-90">Mantenimiento, reparaci贸n y diagn贸stico profesional para tu veh铆culo con garant铆a y tecnolog铆a de punta.</p>
77
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
78
+ <button class="bg-white text-indigo-600 px-8 py-3 rounded-md font-bold hover:bg-gray-100 transition duration-300">
79
+ Comenzar Ahora
80
+ </button>
81
+ <button class="border-2 border-white px-8 py-3 rounded-md font-bold hover:bg-white hover:text-indigo-600 transition duration-300">
82
+ Ver Demo
83
+ </button>
84
+ </div>
85
+ </div>
86
+ <div class="md:w-1/2 flex justify-center">
87
+ <img src="https://illustrations.popsy.co/amber/digital-nomad.svg" alt="Hero Illustration" class="w-full max-w-md animate-float">
88
+ </div>
89
+ </div>
90
+ </div>
91
+ </section>
92
+
93
+ <!-- Clients Section -->
94
+ <section class="py-12 bg-gray-50">
95
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
96
+ <p class="text-center text-gray-500 mb-8">Conf铆an en nosotros</p>
97
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8 items-center">
98
+ <div class="flex justify-center">
99
+ <i class="fab fa-google text-4xl text-gray-600"></i>
100
+ </div>
101
+ <div class="flex justify-center">
102
+ <i class="fab fa-microsoft text-4xl text-gray-600"></i>
103
+ </div>
104
+ <div class="flex justify-center">
105
+ <i class="fab fa-amazon text-4xl text-gray-600"></i>
106
+ </div>
107
+ <div class="flex justify-center">
108
+ <i class="fab fa-apple text-4xl text-gray-600"></i>
109
+ </div>
110
+ </div>
111
+ </div>
112
+ </section>
113
+
114
+ <!-- Services Section -->
115
+ <section id="servicios" class="py-20">
116
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
117
+ <div class="text-center mb-16">
118
+ <h2 class="text-3xl font-bold mb-4">Nuestros Servicios</h2>
119
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Ofrecemos soluciones integrales para llevar tu negocio al siguiente nivel digital.</p>
120
+ </div>
121
+
122
+ <div class="grid md:grid-cols-3 gap-8">
123
+ <!-- Service 1 -->
124
+ <div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
125
+ <div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-6">
126
+ <i class="fas fa-tools text-red-600 text-2xl"></i>
127
+ </div>
128
+ <h3 class="text-xl font-bold mb-3">Mantenimiento</h3>
129
+ <p class="text-gray-600 mb-4">Servicios de mantenimiento preventivo y correctivo con repuestos de calidad.</p>
130
+ <a href="#" class="text-red-600 font-medium flex items-center">
131
+ Saber m谩s <i class="fas fa-arrow-right ml-2"></i>
132
+ </a>
133
+ </div>
134
+
135
+ <!-- Service 2 -->
136
+ <div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
137
+ <div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-6">
138
+ <i class="fas fa-car-crash text-red-600 text-2xl"></i>
139
+ </div>
140
+ <h3 class="text-xl font-bold mb-3">Reparaci贸n</h3>
141
+ <p class="text-gray-600 mb-4">Diagn贸stico y reparaci贸n de fallas mec谩nicas, el茅ctricas y electr贸nicas.</p>
142
+ <a href="#" class="text-red-600 font-medium flex items-center">
143
+ Saber m谩s <i class="fas fa-arrow-right ml-2"></i>
144
+ </a>
145
+ </div>
146
+
147
+ <!-- Service 3 -->
148
+ <div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
149
+ <div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-6">
150
+ <i class="fas fa-oil-can text-red-600 text-2xl"></i>
151
+ </div>
152
+ <h3 class="text-xl font-bold mb-3">Cambio de Aceite</h3>
153
+ <p class="text-gray-600 mb-4">Cambio de aceite y filtros con productos premium para proteger tu motor.</p>
154
+ <a href="#" class="text-red-600 font-medium flex items-center">
155
+ Saber m谩s <i class="fas fa-arrow-right ml-2"></i>
156
+ </a>
157
+ </div>
158
+ </div>
159
+ </div>
160
+ </section>
161
+
162
+ <!-- About Section -->
163
+ <section id="nosotros" class="py-20 bg-gray-50">
164
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
165
+ <div class="md:flex items-center">
166
+ <div class="md:w-1/2 mb-12 md:mb-0">
167
+ <img src="https://illustrations.popsy.co/amber/designer.svg" alt="About Illustration" class="w-full max-w-md mx-auto">
168
+ </div>
169
+ <div class="md:w-1/2 md:pl-12">
170
+ <h2 class="text-3xl font-bold mb-6">Sobre Nosotros</h2>
171
+ <p class="text-gray-600 mb-6">Somos un taller mec谩nico especializado con m谩s de 15 a帽os de experiencia en el servicio automotriz.</p>
172
+ <p class="text-gray-600 mb-8">Nuestro equipo de t茅cnicos certificados est谩 comprometido con brindar el mejor servicio para mantener tu veh铆culo en 贸ptimas condiciones.</p>
173
+
174
+ <div class="grid grid-cols-2 gap-6 mb-8">
175
+ <div>
176
+ <h3 class="text-2xl font-bold text-indigo-600">200+</h3>
177
+ <p class="text-gray-600">Clientes satisfechos</p>
178
+ </div>
179
+ <div>
180
+ <h3 class="text-2xl font-bold text-indigo-600">15</h3>
181
+ <p class="text-gray-600">Pa铆ses</p>
182
+ </div>
183
+ <div>
184
+ <h3 class="text-2xl font-bold text-indigo-600">98%</h3>
185
+ <p class="text-gray-600">Tasa de satisfacci贸n</p>
186
+ </div>
187
+ <div>
188
+ <h3 class="text-2xl font-bold text-indigo-600">24/7</h3>
189
+ <p class="text-gray-600">Soporte disponible</p>
190
+ </div>
191
+ </div>
192
+
193
+ <button class="bg-indigo-600 text-white px-8 py-3 rounded-md font-bold hover:bg-indigo-700 transition duration-300">
194
+ Conoce nuestro equipo
195
+ </button>
196
+ </div>
197
+ </div>
198
+ </div>
199
+ </section>
200
+
201
+ <!-- Testimonials -->
202
+ <section class="py-20">
203
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
204
+ <div class="text-center mb-16">
205
+ <h2 class="text-3xl font-bold mb-4">Lo que dicen nuestros clientes</h2>
206
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Testimonios reales de empresas que han transformado su negocio con nosotros.</p>
207
+ </div>
208
+
209
+ <div class="grid md:grid-cols-3 gap-8">
210
+ <!-- Testimonial 1 -->
211
+ <div class="bg-white p-8 rounded-xl shadow-md">
212
+ <div class="flex items-center mb-4">
213
+ <div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center mr-4">
214
+ <i class="fas fa-user text-indigo-600"></i>
215
+ </div>
216
+ <div>
217
+ <h4 class="font-bold">Mar铆a Gonz谩lez</h4>
218
+ <p class="text-gray-600 text-sm">CEO, TiendaOnline</p>
219
+ </div>
220
+ </div>
221
+ <p class="text-gray-600 mb-4">"Nuestras ventas online aumentaron un 300% despu茅s de implementar su soluci贸n de e-commerce. El equipo fue profesional y cumpli贸 con todos los plazos."</p>
222
+ <div class="flex text-yellow-400">
223
+ <i class="fas fa-star"></i>
224
+ <i class="fas fa-star"></i>
225
+ <i class="fas fa-star"></i>
226
+ <i class="fas fa-star"></i>
227
+ <i class="fas fa-star"></i>
228
+ </div>
229
+ </div>
230
+
231
+ <!-- Testimonial 2 -->
232
+ <div class="bg-white p-8 rounded-xl shadow-md">
233
+ <div class="flex items-center mb-4">
234
+ <div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center mr-4">
235
+ <i class="fas fa-user text-indigo-600"></i>
236
+ </div>
237
+ <div>
238
+ <h4 class="font-bold">Carlos Mart铆nez</h4>
239
+ <p class="text-gray-600 text-sm">Director, AppTech</p>
240
+ </div>
241
+ </div>
242
+ <p class="text-gray-600 mb-4">"La aplicaci贸n m贸vil que desarrollaron para nosotros super贸 todas nuestras expectativas. La usabilidad y dise帽o son excepcionales."</p>
243
+ <div class="flex text-yellow-400">
244
+ <i class="fas fa-star"></i>
245
+ <i class="fas fa-star"></i>
246
+ <i class="fas fa-star"></i>
247
+ <i class="fas fa-star"></i>
248
+ <i class="fas fa-star"></i>
249
+ </div>
250
+ </div>
251
+
252
+ <!-- Testimonial 3 -->
253
+ <div class="bg-white p-8 rounded-xl shadow-md">
254
+ <div class="flex items-center mb-4">
255
+ <div class="w-12 h-12 rounded-full bg-indigo-100 flex items-center justify-center mr-4">
256
+ <i class="fas fa-user text-indigo-600"></i>
257
+ </div>
258
+ <div>
259
+ <h4 class="font-bold">Ana L贸pez</h4>
260
+ <p class="text-gray-600 text-sm">Marketing, Consultora</p>
261
+ </div>
262
+ </div>
263
+ <p class="text-gray-600 mb-4">"Su estrategia de marketing digital nos ayud贸 a posicionarnos como l铆deres en nuestro sector. Los resultados fueron visibles desde el primer mes."</p>
264
+ <div class="flex text-yellow-400">
265
+ <i class="fas fa-star"></i>
266
+ <i class="fas fa-star"></i>
267
+ <i class="fas fa-star"></i>
268
+ <i class="fas fa-star"></i>
269
+ <i class="fas fa-star-half-alt"></i>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ </div>
274
+ </section>
275
+
276
+ <!-- CTA Section -->
277
+ <section class="py-20 bg-red-600 text-white">
278
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
279
+ <h2 class="text-3xl font-bold mb-6">驴Listo para transformar tu negocio?</h2>
280
+ <p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">Comienza hoy mismo con nuestra prueba gratuita de 14 d铆as. Sin tarjeta de cr茅dito requerida.</p>
281
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
282
+ <button class="bg-white text-indigo-600 px-8 py-3 rounded-md font-bold hover:bg-gray-100 transition duration-300">
283
+ Comenzar Prueba Gratis
284
+ </button>
285
+ <button class="border-2 border-white px-8 py-3 rounded-md font-bold hover:bg-white hover:text-indigo-600 transition duration-300">
286
+ Hablar con un experto
287
+ </button>
288
+ </div>
289
+ </div>
290
+ </section>
291
+
292
+ <!-- Contact Section -->
293
+ <section id="contacto" class="py-20">
294
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
295
+ <div class="md:flex">
296
+ <div class="md:w-1/2 mb-12 md:mb-0">
297
+ <h2 class="text-3xl font-bold mb-6">Cont谩ctanos</h2>
298
+ <p class="text-gray-600 mb-8">Estamos aqu铆 para ayudarte. Completa el formulario o usa nuestra informaci贸n de contacto.</p>
299
+
300
+ <div class="space-y-6">
301
+ <div class="flex items-start">
302
+ <div class="w-10 h-10 bg-indigo-100 rounded-full flex items-center justify-center mr-4">
303
+ <i class="fas fa-map-marker-alt text-indigo-600"></i>
304
+ </div>
305
+ <div>
306
+ <h4 class="font-bold mb-1">Oficina Principal</h4>
307
+ <p class="text-gray-600">Calle Automotriz 456, Ciudad, M茅xico</p>
308
+ </div>
309
+ </div>
310
+
311
+ <div class="flex items-start">
312
+ <div class="w-10 h-10 bg-indigo-100 rounded-full flex items-center justify-center mr-4">
313
+ <i class="fas fa-phone-alt text-indigo-600"></i>
314
+ </div>
315
+ <div>
316
+ <h4 class="font-bold mb-1">Tel茅fono</h4>
317
+ <p class="text-gray-600">+52 55 1234 5678</p>
318
+ </div>
319
+ </div>
320
+
321
+ <div class="flex items-start">
322
+ <div class="w-10 h-10 bg-indigo-100 rounded-full flex items-center justify-center mr-4">
323
+ <i class="fas fa-envelope text-indigo-600"></i>
324
+ </div>
325
+ <div>
326
+ <h4 class="font-bold mb-1">Email</h4>
327
+ <p class="text-gray-600">contacto@lospits.com.mx</p>
328
+ </div>
329
+ </div>
330
+ </div>
331
+
332
+ <div class="mt-8">
333
+ <h4 class="font-bold mb-4">S铆guenos</h4>
334
+ <div class="flex space-x-4">
335
+ <a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center hover:bg-indigo-100 transition duration-300">
336
+ <i class="fab fa-facebook-f text-gray-600 hover:text-indigo-600"></i>
337
+ </a>
338
+ <a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center hover:bg-indigo-100 transition duration-300">
339
+ <i class="fab fa-twitter text-gray-600 hover:text-indigo-600"></i>
340
+ </a>
341
+ <a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center hover:bg-indigo-100 transition duration-300">
342
+ <i class="fab fa-linkedin-in text-gray-600 hover:text-indigo-600"></i>
343
+ </a>
344
+ <a href="#" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center hover:bg-indigo-100 transition duration-300">
345
+ <i class="fab fa-instagram text-gray-600 hover:text-indigo-600"></i>
346
+ </a>
347
+ </div>
348
+ </div>
349
+ </div>
350
+
351
+ <div class="md:w-1/2 md:pl-12">
352
+ <form class="bg-white p-8 rounded-xl shadow-md">
353
+ <div class="mb-6">
354
+ <label for="name" class="block text-gray-700 font-medium mb-2">Nombre Completo</label>
355
+ <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500">
356
+ </div>
357
+
358
+ <div class="mb-6">
359
+ <label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
360
+ <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500">
361
+ </div>
362
+
363
+ <div class="mb-6">
364
+ <label for="subject" class="block text-gray-700 font-medium mb-2">Asunto</label>
365
+ <input type="text" id="subject" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500">
366
+ </div>
367
+
368
+ <div class="mb-6">
369
+ <label for="message" class="block text-gray-700 font-medium mb-2">Mensaje</label>
370
+ <textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500"></textarea>
371
+ </div>
372
+
373
+ <button type="submit" class="w-full bg-indigo-600 text-white px-6 py-3 rounded-md font-bold hover:bg-indigo-700 transition duration-300">
374
+ Enviar Mensaje
375
+ </button>
376
+ </form>
377
+ </div>
378
+ </div>
379
+ </div>
380
+ </section>
381
+
382
+ <!-- Footer -->
383
+ <footer class="bg-gray-900 text-white py-12">
384
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
385
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
386
+ <div>
387
+ <div class="flex items-center mb-4">
388
+ <i class="fas fa-bolt text-indigo-500 text-2xl mr-2"></i>
389
+ <span class="text-xl font-bold">NEXUS</span>
390
+ </div>
391
+ <p class="text-gray-400">Soluciones digitales innovadoras para impulsar tu negocio en la era digital.</p>
392
+ </div>
393
+
394
+ <div>
395
+ <h4 class="text-lg font-bold mb-4">Servicios</h4>
396
+ <ul class="space-y-2">
397
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Mantenimiento</a></li>
398
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Reparaci贸n</a></li>
399
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Cambio de Aceite</a></li>
400
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Diagn贸stico</a></li>
401
+ </ul>
402
+ </div>
403
+
404
+ <div>
405
+ <h4 class="text-lg font-bold mb-4">Empresa</h4>
406
+ <ul class="space-y-2">
407
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Sobre Nosotros</a></li>
408
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Carreras</a></li>
409
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li>
410
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Prensa</a></li>
411
+ </ul>
412
+ </div>
413
+
414
+ <div>
415
+ <h4 class="text-lg font-bold mb-4">Legal</h4>
416
+ <ul class="space-y-2">
417
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Pol铆tica de Privacidad</a></li>
418
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">T茅rminos de Servicio</a></li>
419
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Pol铆tica de Cookies</a></li>
420
+ </ul>
421
+ </div>
422
+ </div>
423
+
424
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
425
+ <p class="text-gray-400 mb-4 md:mb-0">漏 2023 Nexus. Todos los derechos reservados.</p>
426
+ <div class="flex space-x-6">
427
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">
428
+ <i class="fab fa-facebook-f"></i>
429
+ </a>
430
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">
431
+ <i class="fab fa-twitter"></i>
432
+ </a>
433
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">
434
+ <i class="fab fa-linkedin-in"></i>
435
+ </a>
436
+ <a href="#" class="text-gray-400 hover:text-white transition duration-300">
437
+ <i class="fab fa-instagram"></i>
438
+ </a>
439
+ </div>
440
+ </div>
441
+ </div>
442
+ </footer>
443
+
444
+ <script>
445
+ // Mobile menu toggle
446
+ const menuBtn = document.getElementById('menu-btn');
447
+ const mobileMenu = document.getElementById('mobile-menu');
448
+
449
+ menuBtn.addEventListener('click', () => {
450
+ mobileMenu.classList.toggle('hidden');
451
+ });
452
+
453
+ // Smooth scrolling for anchor links
454
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
455
+ anchor.addEventListener('click', function (e) {
456
+ e.preventDefault();
457
+
458
+ const targetId = this.getAttribute('href');
459
+ const targetElement = document.querySelector(targetId);
460
+
461
+ if (targetElement) {
462
+ window.scrollTo({
463
+ top: targetElement.offsetTop - 80,
464
+ behavior: 'smooth'
465
+ });
466
+
467
+ // Close mobile menu if open
468
+ if (!mobileMenu.classList.contains('hidden')) {
469
+ mobileMenu.classList.add('hidden');
470
+ }
471
+ }
472
+ });
473
+ });
474
+
475
+ // Add shadow to navbar on scroll
476
+ window.addEventListener('scroll', () => {
477
+ const nav = document.querySelector('nav');
478
+ if (window.scrollY > 10) {
479
+ nav.classList.add('shadow-lg');
480
+ } else {
481
+ nav.classList.remove('shadow-lg');
482
+ }
483
+ });
484
+ </script>
485
+ <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=richieeee732/pitswebpage" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
486
+ </html>