natanps commited on
Commit
4aaebab
·
verified ·
1 Parent(s): fcd579c

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +234 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Q
3
- emoji: 💻
4
- colorFrom: purple
5
  colorTo: purple
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: q
3
+ emoji: 🐳
4
+ colorFrom: blue
5
  colorTo: purple
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,234 @@
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>PicoléDaFirma - Os melhores picolés da região!</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
+ .flavor-card:hover {
11
+ transform: translateY(-5px);
12
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
13
+ }
14
+ .cart-item-enter {
15
+ animation: slideIn 0.3s forwards;
16
+ }
17
+ .cart-item-exit {
18
+ animation: slideOut 0.3s forwards;
19
+ }
20
+ @keyframes slideIn {
21
+ from { transform: translateX(100%); opacity: 0; }
22
+ to { transform: translateX(0); opacity: 1; }
23
+ }
24
+ @keyframes slideOut {
25
+ from { transform: translateX(0); opacity: 1; }
26
+ to { transform: translateX(100%); opacity: 0; }
27
+ }
28
+ .pulse {
29
+ animation: pulse 1.5s infinite;
30
+ }
31
+ @keyframes pulse {
32
+ 0% { transform: scale(1); }
33
+ 50% { transform: scale(1.05); }
34
+ 100% { transform: scale(1); }
35
+ }
36
+ </style>
37
+ </head>
38
+ <body class="bg-gradient-to-b from-pink-50 to-blue-50 min-h-screen">
39
+ <!-- Header -->
40
+ <header class="bg-gradient-to-r from-pink-500 to-blue-500 text-white shadow-lg sticky top-0 z-50">
41
+ <div class="container mx-auto px-4 py-4 flex justify-between items-center">
42
+ <div class="flex items-center space-x-2">
43
+ <i class="fas fa-ice-cream text-3xl"></i>
44
+ <h1 class="text-2xl md:text-3xl font-bold">PicoléDaFirma</h1>
45
+ </div>
46
+ <div class="relative">
47
+ <button id="cart-button" class="relative p-2 rounded-full hover:bg-white hover:bg-opacity-20 transition">
48
+ <i class="fas fa-shopping-cart text-xl"></i>
49
+ <span id="cart-count" class="absolute -top-1 -right-1 bg-yellow-400 text-black rounded-full w-5 h-5 flex items-center justify-center text-xs font-bold">0</span>
50
+ </button>
51
+ <div id="cart-dropdown" class="hidden absolute right-0 mt-2 w-72 md:w-96 bg-white rounded-lg shadow-xl z-50 border border-gray-200">
52
+ <div class="p-4 border-b border-gray-200 bg-gradient-to-r from-pink-100 to-blue-100 rounded-t-lg">
53
+ <h3 class="font-bold text-lg text-gray-800">Seu Carrinho</h3>
54
+ </div>
55
+ <div id="cart-items" class="max-h-96 overflow-y-auto p-4">
56
+ <p id="empty-cart-message" class="text-gray-500 text-center py-4">Seu carrinho está vazio</p>
57
+ </div>
58
+ <div class="p-4 border-t border-gray-200 bg-gray-50 rounded-b-lg">
59
+ <div class="flex justify-between mb-2">
60
+ <span class="font-semibold">Total:</span>
61
+ <span id="cart-total" class="font-bold">R$ 0,00</span>
62
+ </div>
63
+ <button id="checkout-btn" class="w-full bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 rounded-lg font-semibold hover:from-pink-600 hover:to-blue-600 transition disabled:opacity-50 disabled:cursor-not-allowed" disabled>
64
+ Finalizar Compra
65
+ </button>
66
+ </div>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ </header>
71
+
72
+ <!-- Hero Section -->
73
+ <section class="py-12 px-4 bg-gradient-to-r from-pink-400 to-blue-400 text-white">
74
+ <div class="container mx-auto flex flex-col md:flex-row items-center">
75
+ <div class="md:w-1/2 mb-8 md:mb-0">
76
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Os melhores picolés da região!</h2>
77
+ <p class="text-xl mb-6">Refresque seu dia com nossos sabores exclusivos a apenas R$ 3,00 cada!</p>
78
+ <a href="#flavors" class="bg-white text-pink-600 font-bold py-3 px-6 rounded-full hover:bg-gray-100 transition inline-block pulse">
79
+ Ver Sabores <i class="fas fa-arrow-down ml-2"></i>
80
+ </a>
81
+ </div>
82
+ <div class="md:w-1/2 flex justify-center">
83
+ <img src="https://images.unsplash.com/photo-1558584731-0f0cd43e402e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
84
+ alt="Picolés coloridos"
85
+ class="rounded-lg shadow-2xl max-w-full h-auto max-h-96 object-cover border-4 border-white">
86
+ </div>
87
+ </div>
88
+ </section>
89
+
90
+ <!-- Flavors Section -->
91
+ <section id="flavors" class="py-16 px-4">
92
+ <div class="container mx-auto">
93
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Nossos Sabores</h2>
94
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
95
+ <!-- Flocos -->
96
+ <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
97
+ <div class="h-48 overflow-hidden">
98
+ <img src="https://images.unsplash.com/photo-1579954115545-a95591f28bfc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
99
+ alt="Picolé de Flocos"
100
+ class="w-full h-full object-cover hover:scale-105 transition duration-500">
101
+ </div>
102
+ <div class="p-6">
103
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Flocos</h3>
104
+ <p class="text-gray-600 mb-4">Delicioso picolé de creme com flocos de chocolate crocantes.</p>
105
+ <div class="flex justify-between items-center">
106
+ <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
107
+ <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition"
108
+ data-name="Flocos"
109
+ data-price="3.00">
110
+ Adicionar <i class="fas fa-cart-plus ml-1"></i>
111
+ </button>
112
+ </div>
113
+ </div>
114
+ </div>
115
+
116
+ <!-- Leitinho -->
117
+ <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
118
+ <div class="h-48 overflow-hidden">
119
+ <img src="https://images.unsplash.com/photo-1560008581-09826d1de69e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
120
+ alt="Picolé de Leitinho"
121
+ class="w-full h-full object-cover hover:scale-105 transition duration-500">
122
+ </div>
123
+ <div class="p-6">
124
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Leitinho</h3>
125
+ <p class="text-gray-600 mb-4">Cremoso picolé de leite condensado que derrete na boca.</p>
126
+ <div class="flex justify-between items-center">
127
+ <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
128
+ <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition"
129
+ data-name="Leitinho"
130
+ data-price="3.00">
131
+ Adicionar <i class="fas fa-cart-plus ml-1"></i>
132
+ </button>
133
+ </div>
134
+ </div>
135
+ </div>
136
+
137
+ <!-- Uva -->
138
+ <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
139
+ <div class="h-48 overflow-hidden">
140
+ <img src="https://images.unsplash.com/photo-1635405670481-1d8a5ca6e117?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
141
+ alt="Picolé de Uva"
142
+ class="w-full h-full object-cover hover:scale-105 transition duration-500">
143
+ </div>
144
+ <div class="p-6">
145
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Uva</h3>
146
+ <p class="text-gray-600 mb-4">Refrescante picolé de uva com aquele gostinho de infância.</p>
147
+ <div class="flex justify-between items-center">
148
+ <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
149
+ <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition"
150
+ data-name="Uva"
151
+ data-price="3.00">
152
+ Adicionar <i class="fas fa-cart-plus ml-1"></i>
153
+ </button>
154
+ </div>
155
+ </div>
156
+ </div>
157
+
158
+ <!-- Açai -->
159
+ <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
160
+ <div class="h-48 overflow-hidden">
161
+ <img src="https://images.unsplash.com/photo-1606313564200-75a9eb814a90?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
162
+ alt="Picolé de Açai"
163
+ class="w-full h-full object-cover hover:scale-105 transition duration-500">
164
+ </div>
165
+ <div class="p-6">
166
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Açai</h3>
167
+ <p class="text-gray-600 mb-4">Energético picolé de açaí puro, perfeito para os dias quentes.</p>
168
+ <div class="flex justify-between items-center">
169
+ <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
170
+ <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition"
171
+ data-name="Açai"
172
+ data-price="3.00">
173
+ Adicionar <i class="fas fa-cart-plus ml-1"></i>
174
+ </button>
175
+ </div>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- Morango -->
180
+ <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
181
+ <div class="h-48 overflow-hidden">
182
+ <img src="https://images.unsplash.com/photo-1577234286642-fc512a5f8f11?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
183
+ alt="Picolé de Morango"
184
+ class="w-full h-full object-cover hover:scale-105 transition duration-500">
185
+ </div>
186
+ <div class="p-6">
187
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Morango</h3>
188
+ <p class="text-gray-600 mb-4">Picolé de morango natural, doce e levemente ácido.</p>
189
+ <div class="flex justify-between items-center">
190
+ <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
191
+ <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition"
192
+ data-name="Morango"
193
+ data-price="3.00">
194
+ Adicionar <i class="fas fa-cart-plus ml-1"></i>
195
+ </button>
196
+ </div>
197
+ </div>
198
+ </div>
199
+
200
+ <!-- Abacaxi ao Vinho -->
201
+ <div class="flavor-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
202
+ <div class="h-48 overflow-hidden">
203
+ <img src="https://images.unsplash.com/photo-1603569283847-aa295f0d016a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
204
+ alt="Picolé de Abacaxi ao Vinho"
205
+ class="w-full h-full object-cover hover:scale-105 transition duration-500">
206
+ </div>
207
+ <div class="p-6">
208
+ <h3 class="text-xl font-bold mb-2 text-gray-800">Abacaxi ao Vinho</h3>
209
+ <p class="text-gray-600 mb-4">Sofisticado picolé de abacaxi com um toque especial de vinho.</p>
210
+ <div class="flex justify-between items-center">
211
+ <span class="text-2xl font-bold text-pink-600">R$ 3,00</span>
212
+ <button class="add-to-cart bg-gradient-to-r from-pink-500 to-blue-500 text-white py-2 px-4 rounded-lg hover:from-pink-600 hover:to-blue-600 transition"
213
+ data-name="Abacaxi ao Vinho"
214
+ data-price="3.00">
215
+ Adicionar <i class="fas fa-cart-plus ml-1"></i>
216
+ </button>
217
+ </div>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ </div>
222
+ </section>
223
+
224
+ <!-- Testimonials -->
225
+ <section class="py-16 px-4 bg-gray-50">
226
+ <div class="container mx-auto">
227
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">O que dizem nossos clientes</h2>
228
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
229
+ <div class="bg-white p-6 rounded-lg shadow-md">
230
+ <div class="flex items-center mb-4">
231
+ <div class="w-12 h-12 rounded-full bg-pink-500 flex items-center justify-center text-white font-bold text-xl">M</div>
232
+ <div class="ml-4">
233
+ <h4
234
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ faça um site de venda de sorvetes com o nome de PicoléDaFirma com os sabores de flocos, leitinho, uma, açai, morango e abacaxi ao vinho com os sabores de 3,00 cada, coloque imagens ilustrativas para incentivar a compra, coloque um carrinho e automatize para ter jm