Marcelinohf commited on
Commit
0ec87f4
·
verified ·
1 Parent(s): a3a6c63

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +441 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Website
3
- emoji: 🐨
4
  colorFrom: green
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: website
3
+ emoji: 🐳
4
  colorFrom: green
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,441 @@
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="pt-BR">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Will Company - Marketing que Transforma</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: '#000000',
15
+ secondary: '#FF6B00',
16
+ dark: '#111111',
17
+ light: '#F8F8F8',
18
+ }
19
+ }
20
+ }
21
+ }
22
+ </script>
23
+ <style>
24
+ .hero-gradient {
25
+ background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(255,107,0,0.2) 100%);
26
+ }
27
+ .service-card:hover {
28
+ transform: translateY(-10px);
29
+ box-shadow: 0 20px 25px -5px rgba(255,107,0,0.2), 0 10px 10px -5px rgba(255,107,0,0.1);
30
+ }
31
+ .nav-link:hover {
32
+ color: #FF6B00;
33
+ }
34
+ .btn-primary:hover {
35
+ background-color: #000000;
36
+ color: #FF6B00;
37
+ }
38
+ .btn-secondary:hover {
39
+ background-color: #FF6B00;
40
+ opacity: 0.9;
41
+ }
42
+ </style>
43
+ </head>
44
+ <body class="font-sans bg-light text-gray-800">
45
+ <!-- Header/Navbar -->
46
+ <header class="bg-primary text-white sticky top-0 z-50 shadow-lg">
47
+ <div class="container mx-auto px-6 py-4">
48
+ <div class="flex items-center justify-between">
49
+ <div class="flex items-center">
50
+ <div class="mr-2 text-secondary">
51
+ <i class="fas fa-fire text-3xl"></i>
52
+ </div>
53
+ <a href="#" class="text-2xl font-bold">
54
+ <span class="text-white">WILL</span>
55
+ <span class="text-secondary">COMPANY</span>
56
+ </a>
57
+ </div>
58
+
59
+ <nav class="hidden md:flex space-x-8">
60
+ <a href="#" class="nav-link text-white hover:text-secondary transition duration-300">Home</a>
61
+ <a href="#" class="nav-link text-white hover:text-secondary transition duration-300">Serviços</a>
62
+ <a href="#" class="nav-link text-white hover:text-secondary transition duration-300">Portfólio</a>
63
+ <a href="#" class="nav-link text-white hover:text-secondary transition duration-300">Sobre</a>
64
+ <a href="#" class="nav-link text-white hover:text-secondary transition duration-300">Contato</a>
65
+ </nav>
66
+
67
+ <div class="md:hidden">
68
+ <button class="text-white focus:outline-none">
69
+ <i class="fas fa-bars text-2xl"></i>
70
+ </button>
71
+ </div>
72
+ </div>
73
+ </div>
74
+ </header>
75
+
76
+ <!-- Hero Section -->
77
+ <section class="hero-gradient min-h-screen flex items-center relative overflow-hidden">
78
+ <div class="absolute inset-0 bg-black opacity-50"></div>
79
+ <div class="container mx-auto px-6 z-10">
80
+ <div class="max-w-2xl">
81
+ <h1 class="text-5xl md:text-6xl font-bold text-white mb-6 leading-tight">
82
+ Transformamos <span class="text-secondary">ideias</span> em resultados
83
+ </h1>
84
+ <p class="text-xl text-gray-300 mb-10">
85
+ A Will Company é a parceira estratégica que sua marca precisa para se destacar no mercado digital.
86
+ </p>
87
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
88
+ <a href="#" class="btn-primary bg-secondary text-white px-8 py-4 rounded-full font-bold text-lg transition duration-300 hover:bg-black hover:text-secondary">
89
+ Comece seu projeto
90
+ </a>
91
+ <a href="#" class="btn-secondary border-2 border-white text-white px-8 py-4 rounded-full font-bold text-lg transition duration-300 hover:bg-secondary">
92
+ Conheça nossos cases
93
+ </a>
94
+ </div>
95
+ </div>
96
+ </div>
97
+
98
+ <div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
99
+ <a href="#services" class="text-white text-2xl">
100
+ <i class="fas fa-chevron-down"></i>
101
+ </a>
102
+ </div>
103
+ </section>
104
+
105
+ <!-- Services Section -->
106
+ <section id="services" class="py-20 bg-white">
107
+ <div class="container mx-auto px-6">
108
+ <div class="text-center mb-20">
109
+ <h2 class="text-4xl font-bold text-primary mb-4">Nossos <span class="text-secondary">Serviços</span></h2>
110
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">
111
+ Oferecemos soluções completas para impulsionar sua presença digital e alcançar resultados excepcionais.
112
+ </p>
113
+ </div>
114
+
115
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
116
+ <!-- Service 1 -->
117
+ <div class="service-card bg-white p-8 rounded-xl shadow-lg transition duration-500 hover:shadow-xl">
118
+ <div class="text-secondary mb-6">
119
+ <i class="fas fa-bullseye text-4xl"></i>
120
+ </div>
121
+ <h3 class="text-2xl font-bold text-primary mb-4">Marketing Digital</h3>
122
+ <p class="text-gray-600 mb-6">
123
+ Estratégias personalizadas para aumentar sua visibilidade, engajamento e conversões no ambiente digital.
124
+ </p>
125
+ <a href="#" class="text-secondary font-semibold flex items-center">
126
+ Saiba mais <i class="fas fa-arrow-right ml-2"></i>
127
+ </a>
128
+ </div>
129
+
130
+ <!-- Service 2 -->
131
+ <div class="service-card bg-white p-8 rounded-xl shadow-lg transition duration-500 hover:shadow-xl">
132
+ <div class="text-secondary mb-6">
133
+ <i class="fas fa-code text-4xl"></i>
134
+ </div>
135
+ <h3 class="text-2xl font-bold text-primary mb-4">Desenvolvimento Web</h3>
136
+ <p class="text-gray-600 mb-6">
137
+ Sites e aplicações web de alto desempenho, com design responsivo e experiência do usuário excepcional.
138
+ </p>
139
+ <a href="#" class="text-secondary font-semibold flex items-center">
140
+ Saiba mais <i class="fas fa-arrow-right ml-2"></i>
141
+ </a>
142
+ </div>
143
+
144
+ <!-- Service 3 -->
145
+ <div class="service-card bg-white p-8 rounded-xl shadow-lg transition duration-500 hover:shadow-xl">
146
+ <div class="text-secondary mb-6">
147
+ <i class="fas fa-chart-line text-4xl"></i>
148
+ </div>
149
+ <h3 class="text-2xl font-bold text-primary mb-4">Branding</h3>
150
+ <p class="text-gray-600 mb-6">
151
+ Desenvolvimento de identidade visual e estratégia de marca para posicionamento competitivo no mercado.
152
+ </p>
153
+ <a href="#" class="text-secondary font-semibold flex items-center">
154
+ Saiba mais <i class="fas fa-arrow-right ml-2"></i>
155
+ </a>
156
+ </div>
157
+ </div>
158
+ </div>
159
+ </section>
160
+
161
+ <!-- About Section -->
162
+ <section class="py-20 bg-primary text-white">
163
+ <div class="container mx-auto px-6">
164
+ <div class="flex flex-col lg:flex-row items-center">
165
+ <div class="lg:w-1/2 mb-10 lg:mb-0 lg:pr-10">
166
+ <h2 class="text-4xl font-bold mb-6">Quem <span class="text-secondary">somos</span></h2>
167
+ <p class="text-lg mb-6">
168
+ A Will Company nasceu da paixão por transformar ideias em realidade. Somos uma equipe de especialistas em marketing, design e tecnologia comprometidos em entregar resultados excepcionais para nossos clientes.
169
+ </p>
170
+ <p class="text-lg mb-8">
171
+ Com mais de 10 anos de experiência no mercado, ajudamos empresas de todos os portes a alcançarem seus objetivos e se destacarem em seus segmentos.
172
+ </p>
173
+ <a href="#" class="inline-block bg-secondary text-white px-8 py-3 rounded-full font-bold text-lg transition duration-300 hover:bg-white hover:text-primary">
174
+ Conheça nossa história
175
+ </a>
176
+ </div>
177
+ <div class="lg:w-1/2 relative">
178
+ <div class="bg-secondary h-80 w-full rounded-lg"></div>
179
+ <div class="absolute -bottom-10 -left-10 bg-white h-64 w-64 rounded-lg shadow-xl hidden lg:block"></div>
180
+ </div>
181
+ </div>
182
+ </div>
183
+ </section>
184
+
185
+ <!-- Portfolio Section -->
186
+ <section class="py-20 bg-white">
187
+ <div class="container mx-auto px-6">
188
+ <div class="text-center mb-20">
189
+ <h2 class="text-4xl font-bold text-primary mb-4">Nosso <span class="text-secondary">Portfólio</span></h2>
190
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">
191
+ Cases de sucesso que demonstram nossa capacidade de entregar resultados transformadores.
192
+ </p>
193
+ </div>
194
+
195
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
196
+ <!-- Project 1 -->
197
+ <div class="relative group overflow-hidden rounded-xl shadow-lg">
198
+ <img src="https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Projeto 1" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
199
+ <div class="absolute inset-0 bg-black bg-opacity-70 flex flex-col justify-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
200
+ <h3 class="text-white text-2xl font-bold mb-2">E-commerce Fashion</h3>
201
+ <p class="text-gray-300 mb-4">Aumento de 250% nas vendas em 6 meses</p>
202
+ <a href="#" class="text-secondary font-semibold">Ver case completo</a>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Project 2 -->
207
+ <div class="relative group overflow-hidden rounded-xl shadow-lg">
208
+ <img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Projeto 2" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
209
+ <div class="absolute inset-0 bg-black bg-opacity-70 flex flex-col justify-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
210
+ <h3 class="text-white text-2xl font-bold mb-2">App de Finanças</h3>
211
+ <p class="text-gray-300 mb-4">50.000 downloads no primeiro mês</p>
212
+ <a href="#" class="text-secondary font-semibold">Ver case completo</a>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Project 3 -->
217
+ <div class="relative group overflow-hidden rounded-xl shadow-lg">
218
+ <img src="https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1472&q=80" alt="Projeto 3" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
219
+ <div class="absolute inset-0 bg-black bg-opacity-70 flex flex-col justify-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
220
+ <h3 class="text-white text-2xl font-bold mb-2">Blog Corporativo</h3>
221
+ <p class="text-gray-300 mb-4">Aumento de 300% no tráfego orgânico</p>
222
+ <a href="#" class="text-secondary font-semibold">Ver case completo</a>
223
+ </div>
224
+ </div>
225
+ </div>
226
+
227
+ <div class="text-center mt-12">
228
+ <a href="#" class="inline-block border-2 border-secondary text-secondary px-8 py-3 rounded-full font-bold text-lg transition duration-300 hover:bg-secondary hover:text-white">
229
+ Ver todos os projetos
230
+ </a>
231
+ </div>
232
+ </div>
233
+ </section>
234
+
235
+ <!-- Testimonials Section -->
236
+ <section class="py-20 bg-gray-100">
237
+ <div class="container mx-auto px-6">
238
+ <div class="text-center mb-20">
239
+ <h2 class="text-4xl font-bold text-primary mb-4">O que dizem <span class="text-secondary">nossos clientes</span></h2>
240
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">
241
+ A satisfação dos nossos clientes é nossa maior recompensa.
242
+ </p>
243
+ </div>
244
+
245
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
246
+ <!-- Testimonial 1 -->
247
+ <div class="bg-white p-8 rounded-xl shadow-lg">
248
+ <div class="flex items-center mb-4">
249
+ <div class="text-secondary text-2xl mr-2">
250
+ <i class="fas fa-star"></i>
251
+ <i class="fas fa-star"></i>
252
+ <i class="fas fa-star"></i>
253
+ <i class="fas fa-star"></i>
254
+ <i class="fas fa-star"></i>
255
+ </div>
256
+ </div>
257
+ <p class="text-gray-600 mb-6">
258
+ "A Will Company revolucionou nosso negócio digital. Em 6 meses, nossas vendas online triplicaram graças à estratégia personalizada que desenvolveram."
259
+ </p>
260
+ <div class="flex items-center">
261
+ <div class="h-12 w-12 rounded-full bg-gray-300 mr-4 overflow-hidden">
262
+ <img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Cliente" class="h-full w-full object-cover">
263
+ </div>
264
+ <div>
265
+ <h4 class="font-bold text-primary">Ana Souza</h4>
266
+ <p class="text-gray-500 text-sm">CEO, Moda Elegante</p>
267
+ </div>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Testimonial 2 -->
272
+ <div class="bg-white p-8 rounded-xl shadow-lg">
273
+ <div class="flex items-center mb-4">
274
+ <div class="text-secondary text-2xl mr-2">
275
+ <i class="fas fa-star"></i>
276
+ <i class="fas fa-star"></i>
277
+ <i class="fas fa-star"></i>
278
+ <i class="fas fa-star"></i>
279
+ <i class="fas fa-star"></i>
280
+ </div>
281
+ </div>
282
+ <p class="text-gray-600 mb-6">
283
+ "O trabalho de branding realizado pela Will Company foi fundamental para reposicionarmos nossa marca no mercado. Resultados impressionantes!"
284
+ </p>
285
+ <div class="flex items-center">
286
+ <div class="h-12 w-12 rounded-full bg-gray-300 mr-4 overflow-hidden">
287
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Cliente" class="h-full w-full object-cover">
288
+ </div>
289
+ <div>
290
+ <h4 class="font-bold text-primary">Carlos Mendes</h4>
291
+ <p class="text-gray-500 text-sm">Diretor, TechSolutions</p>
292
+ </div>
293
+ </div>
294
+ </div>
295
+
296
+ <!-- Testimonial 3 -->
297
+ <div class="bg-white p-8 rounded-xl shadow-lg">
298
+ <div class="flex items-center mb-4">
299
+ <div class="text-secondary text-2xl mr-2">
300
+ <i class="fas fa-star"></i>
301
+ <i class="fas fa-star"></i>
302
+ <i class="fas fa-star"></i>
303
+ <i class="fas fa-star"></i>
304
+ <i class="fas fa-star-half-alt"></i>
305
+ </div>
306
+ </div>
307
+ <p class="text-gray-600 mb-6">
308
+ "O aplicativo desenvolvido pela Will Company superou todas nossas expectativas. A experiência do usuário é simplesmente incrível."
309
+ </p>
310
+ <div class="flex items-center">
311
+ <div class="h-12 w-12 rounded-full bg-gray-300 mr-4 overflow-hidden">
312
+ <img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Cliente" class="h-full w-full object-cover">
313
+ </div>
314
+ <div>
315
+ <h4 class="font-bold text-primary">Juliana Oliveira</h4>
316
+ <p class="text-gray-500 text-sm">Gerente de Produto, FinApp</p>
317
+ </div>
318
+ </div>
319
+ </div>
320
+ </div>
321
+ </div>
322
+ </section>
323
+
324
+ <!-- CTA Section -->
325
+ <section class="py-20 bg-secondary text-white">
326
+ <div class="container mx-auto px-6 text-center">
327
+ <h2 class="text-4xl font-bold mb-6">Pronto para transformar seu negócio?</h2>
328
+ <p class="text-xl mb-10 max-w-2xl mx-auto">
329
+ Entre em contato conosco e descubra como podemos ajudar sua empresa a alcançar novos patamares.
330
+ </p>
331
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
332
+ <a href="#" class="bg-white text-primary px-8 py-4 rounded-full font-bold text-lg transition duration-300 hover:bg-primary hover:text-white">
333
+ Fale com um especialista
334
+ </a>
335
+ <a href="#" class="border-2 border-white px-8 py-4 rounded-full font-bold text-lg transition duration-300 hover:bg-white hover:text-secondary">
336
+ (11) 99999-9999
337
+ </a>
338
+ </div>
339
+ </div>
340
+ </section>
341
+
342
+ <!-- Footer -->
343
+ <footer class="bg-primary text-white py-12">
344
+ <div class="container mx-auto px-6">
345
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
346
+ <div>
347
+ <div class="flex items-center mb-4">
348
+ <div class="mr-2 text-secondary">
349
+ <i class="fas fa-fire text-2xl"></i>
350
+ </div>
351
+ <a href="#" class="text-xl font-bold">
352
+ <span class="text-white">WILL</span>
353
+ <span class="text-secondary">COMPANY</span>
354
+ </a>
355
+ </div>
356
+ <p class="text-gray-400 mb-4">
357
+ Transformando ideias em resultados desde 2010.
358
+ </p>
359
+ <div class="flex space-x-4">
360
+ <a href="#" class="text-gray-400 hover:text-secondary transition duration-300">
361
+ <i class="fab fa-facebook-f"></i>
362
+ </a>
363
+ <a href="#" class="text-gray-400 hover:text-secondary transition duration-300">
364
+ <i class="fab fa-instagram"></i>
365
+ </a>
366
+ <a href="#" class="text-gray-400 hover:text-secondary transition duration-300">
367
+ <i class="fab fa-linkedin-in"></i>
368
+ </a>
369
+ <a href="#" class="text-gray-400 hover:text-secondary transition duration-300">
370
+ <i class="fab fa-youtube"></i>
371
+ </a>
372
+ </div>
373
+ </div>
374
+
375
+ <div>
376
+ <h3 class="text-lg font-bold mb-4">Serviços</h3>
377
+ <ul class="space-y-2">
378
+ <li><a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Marketing Digital</a></li>
379
+ <li><a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Desenvolvimento Web</a></li>
380
+ <li><a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Branding</a></li>
381
+ <li><a href="#" class="text-gray-400 hover:text-secondary transition duration-300">SEO</a></li>
382
+ <li><a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Mídia Paga</a></li>
383
+ </ul>
384
+ </div>
385
+
386
+ <div>
387
+ <h3 class="text-lg font-bold mb-4">Empresa</h3>
388
+ <ul class="space-y-2">
389
+ <li><a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Sobre nós</a></li>
390
+ <li><a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Equipe</a></li>
391
+ <li><a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Carreiras</a></li>
392
+ <li><a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Blog</a></li>
393
+ <li><a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Contato</a></li>
394
+ </ul>
395
+ </div>
396
+
397
+ <div>
398
+ <h3 class="text-lg font-bold mb-4">Contato</h3>
399
+ <ul class="space-y-2 text-gray-400">
400
+ <li class="flex items-center">
401
+ <i class="fas fa-map-marker-alt mr-2 text-secondary"></i>
402
+ Av. Paulista, 1000 - São Paulo/SP
403
+ </li>
404
+ <li class="flex items-center">
405
+ <i class="fas fa-phone-alt mr-2 text-secondary"></i>
406
+ (11) 99999-9999
407
+ </li>
408
+ <li class="flex items-center">
409
+ <i class="fas fa-envelope mr-2 text-secondary"></i>
410
+ contato@willcompany.com
411
+ </li>
412
+ </ul>
413
+ </div>
414
+ </div>
415
+
416
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
417
+ <p class="text-gray-400 mb-4 md:mb-0">
418
+ &copy; 2023 Will Company. Todos os direitos reservados.
419
+ </p>
420
+ <div class="flex space-x-6">
421
+ <a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Termos de Serviço</a>
422
+ <a href="#" class="text-gray-400 hover:text-secondary transition duration-300">Política de Privacidade</a>
423
+ </div>
424
+ </div>
425
+ </div>
426
+ </footer>
427
+
428
+ <script>
429
+ // Simple animation for scroll to services
430
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
431
+ anchor.addEventListener('click', function (e) {
432
+ e.preventDefault();
433
+
434
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
435
+ behavior: 'smooth'
436
+ });
437
+ });
438
+ });
439
+ </script>
440
+ <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=Marcelinohf/website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
441
+ </html>
prompts.txt ADDED
File without changes