Ivaldonetto commited on
Commit
9a4cb9b
·
verified ·
1 Parent(s): 4380911

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +363 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Junior Publicidade
3
- emoji: 📈
4
- colorFrom: yellow
5
- colorTo: green
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: junior-publicidade
3
+ emoji: 🐳
4
+ colorFrom: blue
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,363 @@
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>Junior Publicidade - Publicidade Volante em Salvador</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: '#FEC842',
15
+ secondary: '#002E5E',
16
+ }
17
+ }
18
+ }
19
+ }
20
+ </script>
21
+ <style>
22
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
23
+ body {
24
+ font-family: 'Poppins', sans-serif;
25
+ }
26
+ .hero-section {
27
+ background-image: linear-gradient(rgba(0, 46, 94, 0.8), rgba(0, 46, 94, 0.8)), url('https://images.unsplash.com/photo-1519638399535-1b036603ac77?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
28
+ background-size: cover;
29
+ background-position: center;
30
+ }
31
+ .whatsapp-float {
32
+ position: fixed;
33
+ width: 60px;
34
+ height: 60px;
35
+ bottom: 40px;
36
+ right: 40px;
37
+ background-color: #25d366;
38
+ color: #FFF;
39
+ border-radius: 50px;
40
+ text-align: center;
41
+ font-size: 30px;
42
+ box-shadow: 2px 2px 3px #999;
43
+ z-index: 100;
44
+ display: flex;
45
+ align-items: center;
46
+ justify-content: center;
47
+ transition: all 0.3s ease;
48
+ }
49
+ .whatsapp-float:hover {
50
+ background-color: #128C7E;
51
+ transform: scale(1.1);
52
+ }
53
+ .instagram-float {
54
+ position: fixed;
55
+ width: 60px;
56
+ height: 60px;
57
+ bottom: 110px;
58
+ right: 40px;
59
+ background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
60
+ color: #FFF;
61
+ border-radius: 50px;
62
+ text-align: center;
63
+ font-size: 30px;
64
+ box-shadow: 2px 2px 3px #999;
65
+ z-index: 100;
66
+ display: flex;
67
+ align-items: center;
68
+ justify-content: center;
69
+ transition: all 0.3s ease;
70
+ }
71
+ .instagram-float:hover {
72
+ transform: scale(1.1);
73
+ }
74
+ .service-card:hover {
75
+ transform: translateY(-10px);
76
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
77
+ }
78
+ .service-card {
79
+ transition: all 0.3s ease;
80
+ }
81
+ .logo {
82
+ width: 60px;
83
+ height: 60px;
84
+ display: flex;
85
+ align-items: center;
86
+ justify-content: center;
87
+ border-radius: 50%;
88
+ background: white;
89
+ color: #FEC842;
90
+ font-size: 30px;
91
+ }
92
+ </style>
93
+ </head>
94
+ <body>
95
+ <!-- WhatsApp and Instagram Float Buttons -->
96
+ <a href="https://wa.me/5571999999999" class="whatsapp-float" target="_blank">
97
+ <i class="fab fa-whatsapp"></i>
98
+ </a>
99
+ <a href="https://instagram.com/juniorpublicidade" class="instagram-float" target="_blank">
100
+ <i class="fab fa-instagram"></i>
101
+ </a>
102
+
103
+ <!-- Navigation -->
104
+ <nav class="bg-white shadow-lg sticky top-0 z-50">
105
+ <div class="max-w-6xl mx-auto px-4">
106
+ <div class="flex justify-between">
107
+ <div class="flex space-x-7">
108
+ <div class="flex items-center py-4 px-2">
109
+ <div class="logo mr-2">
110
+ <i class="fas fa-bullhorn"></i>
111
+ </div>
112
+ <a href="#" class="font-bold text-secondary text-2xl">Junior Publicidade</a>
113
+ </div>
114
+ </div>
115
+ <div class="hidden md:flex items-center space-x-1">
116
+ <a href="#home" class="py-4 px-2 text-secondary font-semibold hover:text-primary transition duration-300">Início</a>
117
+ <a href="#services" class="py-4 px-2 text-secondary font-semibold hover:text-primary transition duration-300">Serviços</a>
118
+ <a href="#about" class="py-4 px-2 text-secondary font-semibold hover:text-primary transition duration-300">Sobre</a>
119
+ <a href="#contact" class="py-4 px-2 text-secondary font-semibold hover:text-primary transition duration-300">Contato</a>
120
+ </div>
121
+ <div class="md:hidden flex items-center">
122
+ <button class="outline-none mobile-menu-button">
123
+ <svg class="w-6 h-6 text-secondary" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
124
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
125
+ </svg>
126
+ </button>
127
+ </div>
128
+ </div>
129
+ </div>
130
+ <div class="hidden mobile-menu">
131
+ <ul>
132
+ <li><a href="#home" class="block text-sm px-2 py-4 text-white bg-primary font-semibold">Início</a></li>
133
+ <li><a href="#services" class="block text-sm px-2 py-4 hover:bg-primary hover:text-white transition duration-300">Serviços</a></li>
134
+ <li><a href="#about" class="block text-sm px-2 py-4 hover:bg-primary hover:text-white transition duration-300">Sobre</a></li>
135
+ <li><a href="#contact" class="block text-sm px-2 py-4 hover:bg-primary hover:text-white transition duration-300">Contato</a></li>
136
+ </ul>
137
+ </div>
138
+ </nav>
139
+
140
+ <!-- Hero Section -->
141
+ <section id="home" class="hero-section text-white py-20 md:py-32">
142
+ <div class="container mx-auto px-4 text-center">
143
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">SUA MARCA RODANDO POR ALAGOAS</h1>
144
+ <p class="text-xl md:text-2xl mb-8">Publicidade volante que impacta e gera resultados para o seu negócio</p>
145
+ <div class="flex flex-col md:flex-row justify-center gap-4">
146
+ <a href="https://wa.me/5571999999999" target="_blank" class="bg-primary hover:bg-yellow-500 text-secondary font-bold py-3 px-6 rounded-lg text-lg transition duration-300">
147
+ <i class="fab fa-whatsapp mr-2"></i> Fale Conosco
148
+ </a>
149
+ <a href="#services" class="bg-transparent hover:bg-white hover:text-secondary text-white font-bold py-3 px-6 border-2 border-white rounded-lg text-lg transition duration-300">
150
+ Nossos Serviços
151
+ </a>
152
+ </div>
153
+ </div>
154
+ </section>
155
+
156
+ <!-- Services Section -->
157
+ <section id="services" class="py-16 bg-gray-50">
158
+ <div class="container mx-auto px-4">
159
+ <h2 class="text-3xl font-bold text-center text-secondary mb-12">NOSSOS SERVIÇOS</h2>
160
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
161
+ <!-- Carro de Som -->
162
+ <div class="service-card bg-white p-6 rounded-lg shadow-md text-center">
163
+ <div class="text-primary text-5xl mb-4">
164
+ <i class="fas fa-car"></i>
165
+ </div>
166
+ <h3 class="text-xl font-bold text-secondary mb-3">Carro de Som</h3>
167
+ <p class="text-gray-600">Divulgação eficiente com carros equipados com potentes sistemas de áudio para levar sua mensagem a todos os bairros de Salvador.</p>
168
+ </div>
169
+ <!-- Mini Trio -->
170
+ <div class="service-card bg-white p-6 rounded-lg shadow-md text-center">
171
+ <div class="text-primary text-5xl mb-4">
172
+ <i class="fas fa-music"></i>
173
+ </div>
174
+ <h3 class="text-xl font-bold text-secondary mb-3">Mini Trio</h3>
175
+ <p class="text-gray-600">Impacto garantido com nossos mini trios elétricos, perfeitos para promoções em áreas de grande circulação de pessoas.</p>
176
+ </div>
177
+ <!-- Trio Elétrico -->
178
+ <div class="service-card bg-white p-6 rounded-lg shadow-md text-center">
179
+ <div class="text-primary text-5xl mb-4">
180
+ <i class="fas fa-bus"></i>
181
+ </div>
182
+ <h3 class="text-xl font-bold text-secondary mb-3">Trio Elétrico</h3>
183
+ <p class="text-gray-600">Destaque máximo para sua marca com nossos trios elétricos completos, ideais para grandes eventos e ações promocionais.</p>
184
+ </div>
185
+ </div>
186
+ </div>
187
+ </section>
188
+
189
+ <!-- About Section -->
190
+ <section id="about" class="py-16 bg-white">
191
+ <div class="container mx-auto px-4">
192
+ <div class="flex flex-col md:flex-row items-center">
193
+ <div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
194
+ <img src="https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Equipe Junior Publicidade" class="rounded-lg shadow-lg w-full">
195
+ </div>
196
+ <div class="md:w-1/2">
197
+ <h2 class="text-3xl font-bold text-secondary mb-6">SOBRE NÓS</h2>
198
+ <p class="text-gray-600 mb-4">A <span class="font-bold text-primary">Junior Publicidade</span> é líder em publicidade volante em Salvador, transformando ruas em palco para sua marca com inovação e criatividade.</p>
199
+ <p class="text-gray-600 mb-4">Com mais de 10 anos de experiência, nossa equipe especializada garante que sua mensagem chegue ao público certo, no lugar certo e na hora certa.</p>
200
+ <p class="text-gray-600 mb-6">Trabalhamos com equipamentos modernos e estratégias personalizadas para cada cliente, garantindo o máximo de impacto e retorno sobre o investimento.</p>
201
+ <div class="flex flex-wrap gap-4">
202
+ <div class="bg-primary bg-opacity-10 p-3 rounded-lg flex items-center">
203
+ <i class="fas fa-check-circle text-primary mr-2"></i>
204
+ <span class="text-secondary">Profissionais qualificados</span>
205
+ </div>
206
+ <div class="bg-primary bg-opacity-10 p-3 rounded-lg flex items-center">
207
+ <i class="fas fa-check-circle text-primary mr-2"></i>
208
+ <span class="text-secondary">Equipamentos modernos</span>
209
+ </div>
210
+ <div class="bg-primary bg-opacity-10 p-3 rounded-lg flex items-center">
211
+ <i class="fas fa-check-circle text-primary mr-2"></i>
212
+ <span class="text-secondary">Cobertura em toda Salvador</span>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+ </div>
218
+ </section>
219
+
220
+ <!-- Testimonials -->
221
+ <section class="py-16 bg-secondary text-white">
222
+ <div class="container mx-auto px-4">
223
+ <h2 class="text-3xl font-bold text-center mb-12">O QUE NOSSOS CLIENTES DIZEM</h2>
224
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
225
+ <div class="bg-white bg-opacity-10 p-6 rounded-lg">
226
+ <div class="flex items-center mb-4">
227
+ <div class="text-primary text-2xl mr-2">
228
+ <i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
229
+ </div>
230
+ </div>
231
+ <p class="italic mb-4">"Contratamos a Junior Publicidade para divulgar nosso restaurante e os resultados foram impressionantes. Nosso movimento aumentou em 40%!"</p>
232
+ <p class="font-bold">- Carlos, Restaurante Sabor da Bahia</p>
233
+ </div>
234
+ <div class="bg-white bg-opacity-10 p-6 rounded-lg">
235
+ <div class="flex items-center mb-4">
236
+ <div class="text-primary text-2xl mr-2">
237
+ <i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i>
238
+ </div>
239
+ </div>
240
+ <p class="italic mb-4">"A campanha com o trio elétrico foi um sucesso absoluto. Tivemos recorde de vendas durante a promoção. Super recomendo!"</p>
241
+ <p class="font-bold">- Ana, Loja Moda Fashion</p>
242
+ </div>
243
+ <div class="bg-white bg-opacity-10 p-6 rounded-lg">
244
+ <div class="flex items-center mb-4">
245
+ <div class="text-primary text-2xl mr-2">
246
+ <i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star"></i><i class="fas fa-star-half-alt"></i>
247
+ </div>
248
+ </div>
249
+ <p class="italic mb-4">"Profissionalismo e resultados. Nosso evento político teve uma visibilidade incrível graças aos carros de som da Junior."</p>
250
+ <p class="font-bold">- Dr. João, Candidato a Vereador</p>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ </section>
255
+
256
+ <!-- Contact Section -->
257
+ <section id="contact" class="py-16 bg-white">
258
+ <div class="container mx-auto px-4">
259
+ <h2 class="text-3xl font-bold text-center text-secondary mb-12">ENTRE EM CONTATO</h2>
260
+ <div class="flex flex-col md:flex-row">
261
+ <div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
262
+ <h3 class="text-xl font-bold text-secondary mb-4">FALE CONOSCO</h3>
263
+ <p class="text-gray-600 mb-6">Estamos prontos para criar a campanha perfeita para sua marca. Entre em contato agora mesmo!</p>
264
+
265
+ <div class="mb-6">
266
+ <div class="flex items-center mb-3">
267
+ <i class="fas fa-phone-alt text-primary mr-3"></i>
268
+ <span class="text-secondary font-semibold">(71) 99999-9999</span>
269
+ </div>
270
+ <div class="flex items-center mb-3">
271
+ <i class="fas fa-envelope text-primary mr-3"></i>
272
+ <span class="text-secondary font-semibold">contato@juniorpublicidade.com.br</span>
273
+ </div>
274
+ <div class="flex items-center">
275
+ <i class="fas fa-map-marker-alt text-primary mr-3"></i>
276
+ <span class="text-secondary font-semibold">Alagoas</span>
277
+ </div>
278
+ </div>
279
+
280
+ <h3 class="text-xl font-bold text-secondary mb-4">REDES SOCIAIS</h3>
281
+ <div class="flex space-x-4">
282
+ <a href="https://instagram.com/juniorpublicidade" target="_blank" class="bg-secondary text-white p-3 rounded-full hover:bg-primary transition duration-300">
283
+ <i class="fab fa-instagram"></i>
284
+ </a>
285
+ <a href="https://wa.me/5571999999999" target="_blank" class="bg-secondary text-white p-3 rounded-full hover:bg-primary transition duration-300">
286
+ <i class="fab fa-whatsapp"></i>
287
+ </a>
288
+ </div>
289
+ </div>
290
+ <div class="md:w-1/2">
291
+ <form class="bg-gray-50 p-6 rounded-lg shadow-md">
292
+ <div class="mb-4">
293
+ <label class="block text-secondary font-semibold mb-2" for="name">Nome</label>
294
+ <input class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-primary" type="text" id="name" placeholder="Seu nome">
295
+ </div>
296
+ <div class="mb-4">
297
+ <label class="block text-secondary font-semibold mb-2" for="email">E-mail</label>
298
+ <input class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-primary" type="email" id="email" placeholder="seu@email.com">
299
+ </div>
300
+ <div class="mb-4">
301
+ <label class="block text-secondary font-semibold mb-2" for="phone">Telefone</label>
302
+ <input class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-primary" type="tel" id="phone" placeholder="(71) 99999-9999">
303
+ </div>
304
+ <div class="mb-4">
305
+ <label class="block text-secondary font-semibold mb-2" for="message">Mensagem</label>
306
+ <textarea class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-primary" id="message" rows="4" placeholder="Sua mensagem"></textarea>
307
+ </div>
308
+ <button type="submit" class="bg-primary hover:bg-yellow-500 text-secondary font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline transition duration-300 w-full">
309
+ ENVIAR MENSAGEM
310
+ </button>
311
+ </form>
312
+ </div>
313
+ </div>
314
+ </div>
315
+ </section>
316
+
317
+ <!-- Footer -->
318
+ <footer class="bg-secondary text-white py-8">
319
+ <div class="container mx-auto px-4">
320
+ <div class="flex flex-col md:flex-row justify-between items-center">
321
+ <div class="mb-4 md:mb-0 flex items-center">
322
+ <div class="logo mr-2">
323
+ <i class="fas fa-bullhorn"></i>
324
+ </div>
325
+ <span class="text-xl font-bold">Junior Publicidade</span>
326
+ </div>
327
+ <div class="text-center md:text-right">
328
+ <p class="mb-2">© 2023 Junior Publicidade. Todos os direitos reservados.</p>
329
+ <p>Publicidade volante em Alagoas</p>
330
+ </div>
331
+ </div>
332
+ </div>
333
+ </footer>
334
+
335
+ <!-- Mobile Menu Script -->
336
+ <script>
337
+ const btn = document.querySelector(".mobile-menu-button");
338
+ const menu = document.querySelector(".mobile-menu");
339
+
340
+ btn.addEventListener("click", () => {
341
+ menu.classList.toggle("hidden");
342
+ });
343
+
344
+ // Close menu when clicking on a link
345
+ const menuLinks = document.querySelectorAll(".mobile-menu a");
346
+ menuLinks.forEach(link => {
347
+ link.addEventListener("click", () => {
348
+ menu.classList.add("hidden");
349
+ });
350
+ });
351
+
352
+ // Smooth scrolling for anchor links
353
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
354
+ anchor.addEventListener('click', function (e) {
355
+ e.preventDefault();
356
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
357
+ behavior: 'smooth'
358
+ });
359
+ });
360
+ });
361
+ </script>
362
+ <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=Ivaldonetto/junior-publicidade" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
363
+ </html>