caio246 commited on
Commit
fd25c3d
·
verified ·
1 Parent(s): 2c7ea42

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +192 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Explora
3
- emoji: 🐢
4
  colorFrom: red
5
- colorTo: yellow
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: explora
3
+ emoji: 🐳
4
  colorFrom: red
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,192 @@
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>Explora Mundi - Sua Agência de Viagens</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
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ scroll-behavior: smooth;
15
+ }
16
+
17
+ .hero {
18
+ background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1499678329028-101435549a4e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
19
+ background-size: cover;
20
+ background-position: center;
21
+ }
22
+
23
+ .destination-card:hover {
24
+ transform: translateY(-10px);
25
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
26
+ }
27
+
28
+ .testimonial-card {
29
+ transition: all 0.3s ease;
30
+ }
31
+
32
+ .testimonial-card:hover {
33
+ transform: scale(1.05);
34
+ }
35
+
36
+ .newsletter {
37
+ background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1474&q=80');
38
+ background-size: cover;
39
+ background-position: center;
40
+ }
41
+
42
+ .mobile-menu {
43
+ transition: all 0.3s ease;
44
+ }
45
+ </style>
46
+ </head>
47
+ <body class="bg-gray-50">
48
+ <!-- Header/Navigation -->
49
+ <header class="bg-white shadow-md sticky top-0 z-50">
50
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
51
+ <div class="flex items-center">
52
+ <i class="fas fa-plane-departure text-3xl text-blue-600 mr-2"></i>
53
+ <span class="text-2xl font-bold text-blue-600">Explora Mundi</span>
54
+ </div>
55
+
56
+ <nav class="hidden md:flex space-x-8">
57
+ <a href="#home" class="text-gray-700 hover:text-blue-600 font-medium">Início</a>
58
+ <a href="#destinations" class="text-gray-700 hover:text-blue-600 font-medium">Destinos</a>
59
+ <a href="#packages" class="text-gray-700 hover:text-blue-600 font-medium">Pacotes</a>
60
+ <a href="#testimonials" class="text-gray-700 hover:text-blue-600 font-medium">Depoimentos</a>
61
+ <a href="#contact" class="text-gray-700 hover:text-blue-600 font-medium">Contato</a>
62
+ </nav>
63
+
64
+ <div class="hidden md:flex items-center space-x-4">
65
+ <button class="px-4 py-2 text-blue-600 font-medium hover:bg-blue-50 rounded-lg">Login</button>
66
+ <button class="px-6 py-2 bg-blue-600 text-white font-medium rounded-lg hover:bg-blue-700 transition">Cadastre-se</button>
67
+ </div>
68
+
69
+ <button id="mobile-menu-button" class="md:hidden text-gray-700">
70
+ <i class="fas fa-bars text-2xl"></i>
71
+ </button>
72
+ </div>
73
+
74
+ <!-- Mobile Menu -->
75
+ <div id="mobile-menu" class="mobile-menu hidden md:hidden bg-white w-full absolute left-0 top-full shadow-lg">
76
+ <div class="container mx-auto px-4 py-3 flex flex-col space-y-3">
77
+ <a href="#home" class="text-gray-700 hover:text-blue-600 font-medium py-2 border-b">Início</a>
78
+ <a href="#destinations" class="text-gray-700 hover:text-blue-600 font-medium py-2 border-b">Destinos</a>
79
+ <a href="#packages" class="text-gray-700 hover:text-blue-600 font-medium py-2 border-b">Pacotes</a>
80
+ <a href="#testimonials" class="text-gray-700 hover:text-blue-600 font-medium py-2 border-b">Depoimentos</a>
81
+ <a href="#contact" class="text-gray-700 hover:text-blue-600 font-medium py-2 border-b">Contato</a>
82
+ <div class="flex flex-col space-y-2 pt-2">
83
+ <button class="w-full px-4 py-2 text-blue-600 font-medium hover:bg-blue-50 rounded-lg border border-blue-600">Login</button>
84
+ <button class="w-full px-4 py-2 bg-blue-600 text-white font-medium rounded-lg hover:bg-blue-700 transition">Cadastre-se</button>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ </header>
89
+
90
+ <!-- Hero Section -->
91
+ <section id="home" class="hero min-h-screen flex items-center justify-center text-white">
92
+ <div class="container mx-auto px-4 text-center">
93
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">Descubra o Mundo Conosco</h1>
94
+ <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">Explore destinos incríveis com pacotes personalizados e experiências únicas que ficarão para sempre na sua memória.</p>
95
+ <div class="flex flex-col md:flex-row justify-center space-y-4 md:space-y-0 md:space-x-6">
96
+ <button class="px-8 py-3 bg-blue-600 text-white font-bold rounded-lg hover:bg-blue-700 transition transform hover:scale-105">Explorar Destinos</button>
97
+ <button class="px-8 py-3 bg-transparent border-2 border-white text-white font-bold rounded-lg hover:bg-white hover:text-blue-600 transition transform hover:scale-105">Assistir Vídeo</button>
98
+ </div>
99
+ </div>
100
+ </section>
101
+
102
+ <!-- Search Section -->
103
+ <section class="bg-white py-12 -mt-20 relative z-10 shadow-lg rounded-lg mx-4 md:mx-10 lg:mx-20">
104
+ <div class="container mx-auto px-4">
105
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-4">
106
+ <div class="relative">
107
+ <label class="block text-gray-700 font-medium mb-2">Destino</label>
108
+ <input type="text" placeholder="Para onde vamos?" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
109
+ <i class="fas fa-map-marker-alt absolute right-3 top-10 text-gray-400"></i>
110
+ </div>
111
+
112
+ <div class="relative">
113
+ <label class="block text-gray-700 font-medium mb-2">Tipo</label>
114
+ <select class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 appearance-none">
115
+ <option>Selecione</option>
116
+ <option>Praia</option>
117
+ <option>Montanha</option>
118
+ <option>Cidade</option>
119
+ <option>Aventura</option>
120
+ </select>
121
+ <i class="fas fa-chevron-down absolute right-3 top-10 text-gray-400"></i>
122
+ </div>
123
+
124
+ <div class="relative">
125
+ <label class="block text-gray-700 font-medium mb-2">Data</label>
126
+ <input type="date" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
127
+ <i class="far fa-calendar-alt absolute right-3 top-10 text-gray-400"></i>
128
+ </div>
129
+
130
+ <div class="flex items-end">
131
+ <button class="w-full px-6 py-3 bg-blue-600 text-white font-bold rounded-lg hover:bg-blue-700 transition flex items-center justify-center">
132
+ <i class="fas fa-search mr-2"></i> Buscar
133
+ </button>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ </section>
138
+
139
+ <!-- Popular Destinations -->
140
+ <section id="destinations" class="py-16 bg-gray-50">
141
+ <div class="container mx-auto px-4">
142
+ <div class="text-center mb-12">
143
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Destinos Populares</h2>
144
+ <p class="text-gray-600 max-w-2xl mx-auto">Explore nossos destinos mais procurados pelos viajantes. Cada lugar tem sua magia única esperando para ser descoberta.</p>
145
+ </div>
146
+
147
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
148
+ <!-- Destination 1 -->
149
+ <div class="destination-card bg-white rounded-xl overflow-hidden shadow-md transition duration-500">
150
+ <div class="relative overflow-hidden h-64">
151
+ <img src="https://images.unsplash.com/photo-1518391846015-55a9cc003b25?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Paris" class="w-full h-full object-cover transition duration-500 hover:scale-110">
152
+ <div class="absolute top-4 right-4 bg-blue-600 text-white px-3 py-1 rounded-full text-sm font-medium">20% OFF</div>
153
+ </div>
154
+ <div class="p-6">
155
+ <div class="flex justify-between items-start">
156
+ <div>
157
+ <h3 class="text-xl font-bold text-gray-800">Paris, França</h3>
158
+ <p class="text-gray-600"><i class="fas fa-map-marker-alt text-blue-500 mr-1"></i> Europa</p>
159
+ </div>
160
+ <div class="text-right">
161
+ <p class="text-gray-500 line-through">R$ 4.200</p>
162
+ <p class="text-blue-600 font-bold text-xl">R$ 3.360</p>
163
+ </div>
164
+ </div>
165
+ <div class="flex items-center mt-4">
166
+ <div class="flex text-yellow-400">
167
+ <i class="fas fa-star"></i>
168
+ <i class="fas fa-star"></i>
169
+ <i class="fas fa-star"></i>
170
+ <i class="fas fa-star"></i>
171
+ <i class="fas fa-star-half-alt"></i>
172
+ </div>
173
+ <span class="text-gray-600 ml-2">4.5 (120)</span>
174
+ </div>
175
+ <button class="w-full mt-4 px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition">Detalhes</button>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- Destination 2 -->
180
+ <div class="destination-card bg-white rounded-xl overflow-hidden shadow-md transition duration-500">
181
+ <div class="relative overflow-hidden h-64">
182
+ <img src="https://images.unsplash.com/photo-1523482580672-f109ba8cb9be?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1530&q=80" alt="Tóquio" class="w-full h-full object-cover transition duration-500 hover:scale-110">
183
+ </div>
184
+ <div class="p-6">
185
+ <div class="flex justify-between items-start">
186
+ <div>
187
+ <h3 class="text-xl font-bold text-gray-800">Tóquio, Japão</h3>
188
+ <p class="text-gray-600"><i class="fas fa-map-marker-alt text-blue-500 mr-1"></i> Ásia</p>
189
+ </div>
190
+ <div class="text-right
191
+ <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=caio246/explora" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
192
+ </html>