Bossmarc747 commited on
Commit
5077596
·
verified ·
1 Parent(s): 8b2763f

undefined - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +369 -18
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Silvera
3
- emoji: 📊
4
- colorFrom: green
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: silvera
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: pink
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,370 @@
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="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Lazada Philippines | Best Deals & Free Shipping, Shop Now!</title>
7
+ <link rel="icon" type="image/x-icon" href="https://img.lazcdn.com/g/tps/images/ims-web/TB19SB7aMFY.1VjSZFnXXcFHXXa.png">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ .flash-sale-timer {
15
+ background: linear-gradient(90deg, #FF3A3A 0%, #FF6B6B 100%);
16
+ }
17
+ .category-card:hover {
18
+ transform: translateY(-5px);
19
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
20
+ }
21
+ .product-card:hover {
22
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
23
+ }
24
+ </style>
25
+ </head>
26
+ <body class="bg-gray-50 font-sans">
27
+ <!-- Top Navigation -->
28
+ <nav class="bg-orange-500 text-white py-2 px-4">
29
+ <div class="container mx-auto flex justify-between items-center">
30
+ <div class="flex space-x-4 text-sm">
31
+ <a href="#" class="hover:underline">SAVE MORE ON APP</a>
32
+ <a href="#" class="hover:underline">SELL ON LAZADA</a>
33
+ <a href="#" class="hover:underline">CUSTOMER CARE</a>
34
+ <a href="#" class="hover:underline">TRACK MY ORDER</a>
35
+ </div>
36
+ <div class="flex space-x-4 text-sm">
37
+ <a href="#" class="hover:underline">LOGIN</a>
38
+ <a href="#" class="hover:underline">SIGNUP</a>
39
+ </div>
40
+ </div>
41
+ </nav>
42
+
43
+ <!-- Main Header -->
44
+ <header class="bg-white shadow-sm">
45
+ <div class="container mx-auto py-4 px-4 flex items-center justify-between">
46
+ <div class="flex items-center">
47
+ <a href="#">
48
+ <img src="https://img.lazcdn.com/g/tps/images/ims-web/TB19SB7aMFY.1VjSZFnXXcFHXXa.png" alt="Lazada Logo" class="h-10">
49
+ </a>
50
+ </div>
51
+
52
+ <div class="flex-1 mx-8">
53
+ <div class="relative">
54
+ <input type="text" placeholder="Search in Lazada" class="w-full py-2 px-4 border border-gray-300 rounded-full focus:outline-none focus:ring-2 focus:ring-orange-500">
55
+ <button class="absolute right-0 top-0 h-full px-6 bg-orange-500 text-white rounded-r-full">
56
+ <i data-feather="search"></i>
57
+ </button>
58
+ </div>
59
+ </div>
60
+
61
+ <div class="flex items-center space-x-6">
62
+ <a href="#" class="flex flex-col items-center">
63
+ <i data-feather="user"></i>
64
+ <span class="text-xs mt-1">Account</span>
65
+ </a>
66
+ <a href="#" class="flex flex-col items-center">
67
+ <i data-feather="heart"></i>
68
+ <span class="text-xs mt-1">Wishlist</span>
69
+ </a>
70
+ <a href="#" class="flex flex-col items-center">
71
+ <i data-feather="shopping-cart"></i>
72
+ <span class="text-xs mt-1">Cart</span>
73
+ </a>
74
+ </div>
75
+ </div>
76
+ </header>
77
+
78
+ <!-- Categories Navigation -->
79
+ <div class="bg-white border-b">
80
+ <div class="container mx-auto py-2 px-4 overflow-x-auto">
81
+ <div class="flex space-x-8">
82
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Home</a>
83
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">LazMall</a>
84
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Vouchers</a>
85
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Top-Up & Bills</a>
86
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Beauty</a>
87
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Fashion</a>
88
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Mobiles</a>
89
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Home & Living</a>
90
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Appliances</a>
91
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Electronics</a>
92
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Sports</a>
93
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Toys</a>
94
+ <a href="#" class="whitespace-nowrap text-sm hover:text-orange-500">Grocery</a>
95
+ </div>
96
+ </div>
97
+ </div>
98
+
99
+ <!-- Hero Banner -->
100
+ <div class="bg-white py-4">
101
+ <div class="container mx-auto px-4">
102
+ <div class="relative rounded-lg overflow-hidden">
103
+ <img src="https://img.lazcdn.com/g/tps/imgextra/i4/O1CN01FyQRgf1mR9cKoIfeD_!!6000000004950-0-tps-1976-688.jpg_2200x2200q80.jpg" alt="Hero Banner" class="w-full h-auto">
104
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-6">
105
+ <h2 class="text-white text-2xl font-bold">Shop Now & Save Big!</h2>
106
+ <p class="text-white">Exclusive deals just for you</p>
107
+ </div>
108
+ </div>
109
+ </div>
110
+ </div>
111
+
112
+ <!-- Flash Sale Section -->
113
+ <div class="bg-white mt-4 py-6 px-4">
114
+ <div class="container mx-auto">
115
+ <div class="flex justify-between items-center mb-4">
116
+ <div class="flex items-center">
117
+ <h2 class="text-xl font-bold text-red-600">FLASH SALE</h2>
118
+ <div class="ml-4 flash-sale-timer text-white px-3 py-1 rounded-md flex items-center">
119
+ <span class="font-bold">Ending in</span>
120
+ <div class="ml-2 flex space-x-1">
121
+ <span class="bg-white text-red-600 px-2 py-1 rounded font-bold">56</span>
122
+ <span class="text-white">:</span>
123
+ <span class="bg-white text-red-600 px-2 py-1 rounded font-bold">01</span>
124
+ <span class="text-white">:</span>
125
+ <span class="bg-white text-red-600 px-2 py-1 rounded font-bold">12</span>
126
+ </div>
127
+ </div>
128
+ </div>
129
+ <a href="#" class="text-orange-500 hover:underline">SHOP ALL PRODUCTS</a>
130
+ </div>
131
+
132
+ <div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-6 gap-4">
133
+ <!-- Product 1 -->
134
+ <div class="product-card bg-white p-3 rounded-lg border border-gray-100 transition-all duration-300">
135
+ <img src="https://img.lazcdn.com/g/p/bd02eeafaefe35e0f32d9b80fe9503a7.jpg_400x400q80.jpg" alt="Product" class="w-full h-auto mb-2">
136
+ <h3 class="text-sm font-medium mb-1">Rivers Snow Foam Shampoo for cars or motorcycles - 1 gal.</h3>
137
+ <div class="flex items-center">
138
+ <span class="text-red-600 font-bold">₱489.90</span>
139
+ <span class="text-gray-500 text-xs line-through ml-2">₱599.00</span>
140
+ <span class="text-xs bg-red-100 text-red-600 px-1 ml-2 rounded">-18%</span>
141
+ </div>
142
+ </div>
143
+
144
+ <!-- Product 2 -->
145
+ <div class="product-card bg-white p-3 rounded-lg border border-gray-100 transition-all duration-300">
146
+ <img src="https://img.lazcdn.com/g/p/5a7e56e454489fa31bb60426af9dfd8c.jpg_400x400q80.jpg" alt="Product" class="w-full h-auto mb-2">
147
+ <h3 class="text-sm font-medium mb-1">Mitsushi MGFJ25 220V 700W Economy Air Blower</h3>
148
+ <div class="flex items-center">
149
+ <span class="text-red-600 font-bold">₱475.00</span>
150
+ <span class="text-gray-500 text-xs line-through ml-2">₱1,799.00</span>
151
+ <span class="text-xs bg-red-100 text-red-600 px-1 ml-2 rounded">-74%</span>
152
+ </div>
153
+ </div>
154
+
155
+ <!-- Product 3 -->
156
+ <div class="product-card bg-white p-3 rounded-lg border border-gray-100 transition-all duration-300">
157
+ <img src="https://img.lazcdn.com/g/p/87099153e6df15f35c41121ec8a081e4.jpg_400x400q80.jpg" alt="Product" class="w-full h-auto mb-2">
158
+ <h3 class="text-sm font-medium mb-1">Pedigree Beef Canned Dog Food 1.15KG</h3>
159
+ <div class="flex items-center">
160
+ <span class="text-red-600 font-bold">₱239.63</span>
161
+ <span class="text-gray-500 text-xs line-through ml-2">₱266.25</span>
162
+ <span class="text-xs bg-red-100 text-red-600 px-1 ml-2 rounded">-10%</span>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- Product 4 -->
167
+ <div class="product-card bg-white p-3 rounded-lg border border-gray-100 transition-all duration-300">
168
+ <img src="https://img.lazcdn.com/g/p/2463668b9b22423e0be31e1da58bf6c9.jpg_400x400q80.jpg" alt="Product" class="w-full h-auto mb-2">
169
+ <h3 class="text-sm font-medium mb-1">FOCALLURE Face Liquid Blusher Makeup</h3>
170
+ <div class="flex items-center">
171
+ <span class="text-red-600 font-bold">₱132.45</span>
172
+ <span class="text-gray-500 text-xs line-through ml-2">₱649.00</span>
173
+ <span class="text-xs bg-red-100 text-red-600 px-1 ml-2 rounded">-80%</span>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Product 5 -->
178
+ <div class="product-card bg-white p-3 rounded-lg border border-gray-100 transition-all duration-300">
179
+ <img src="https://img.lazcdn.com/g/p/c013eaea6ffd9f9f5e079da5ed166094.jpg_400x400q80.jpg" alt="Product" class="w-full h-auto mb-2">
180
+ <h3 class="text-sm font-medium mb-1">Handy Stitch Sewing Machine Portable</h3>
181
+ <div class="flex items-center">
182
+ <span class="text-red-600 font-bold">₱126.85</span>
183
+ <span class="text-gray-500 text-xs line-through ml-2">₱1,049.85</span>
184
+ <span class="text-xs bg-red-100 text-red-600 px-1 ml-2 rounded">-88%</span>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Product 6 -->
189
+ <div class="product-card bg-white p-3 rounded-lg border border-gray-100 transition-all duration-300">
190
+ <img src="https://img.lazcdn.com/g/p/df946164e2f4371a11b769f3338d600e.jpg_400x400q80.jpg" alt="Product" class="w-full h-auto mb-2">
191
+ <h3 class="text-sm font-medium mb-1">Del Monte Sarap Savers Filipino Style Party Pack</h3>
192
+ <div class="flex items-center">
193
+ <span class="text-red-600 font-bold">₱131.96</span>
194
+ <span class="text-gray-500 text-xs line-through ml-2">₱155.25</span>
195
+ <span class="text-xs bg-red-100 text-red-600 px-1 ml-2 rounded">-15%</span>
196
+ </div>
197
+ </div>
198
+ </div>
199
+ </div>
200
+ </div>
201
+
202
+ <!-- Categories Section -->
203
+ <div class="bg-white mt-4 py-6 px-4">
204
+ <div class="container mx-auto">
205
+ <h2 class="text-xl font-bold mb-6">Categories</h2>
206
+ <div class="grid grid-cols-3 sm:grid-cols-4 md:grid-cols-6 lg:grid-cols-8 gap-4">
207
+ <!-- Category 1 -->
208
+ <a href="#" class="category-card bg-white p-3 rounded-lg border border-gray-100 flex flex-col items-center transition-all duration-300">
209
+ <img src="https://img.lazcdn.com/g/p/177c3195ee215b57ec8b5e245e4adcaa.jpg_170x170q80.jpg" alt="Category" class="w-16 h-16 mb-2">
210
+ <span class="text-xs text-center">Mobiles</span>
211
+ </a>
212
+
213
+ <!-- Category 2 -->
214
+ <a href="#" class="category-card bg-white p-3 rounded-lg border border-gray-100 flex flex-col items-center transition-all duration-300">
215
+ <img src="https://img.lazcdn.com/g/p/8a578a87d960dfc39882d8eda8207449.jpg_170x170q80.jpg" alt="Category" class="w-16 h-16 mb-2">
216
+ <span class="text-xs text-center">Outdoor Lighting</span>
217
+ </a>
218
+
219
+ <!-- Category 3 -->
220
+ <a href="#" class="category-card bg-white p-3 rounded-lg border border-gray-100 flex flex-col items-center transition-all duration-300">
221
+ <img src="https://img.lazcdn.com/g/p/a05e14dd224fd1b9101af41d7227699c.jpg_170x170q80.jpg" alt="Category" class="w-16 h-16 mb-2">
222
+ <span class="text-xs text-center">T-Shirts & Tanks</span>
223
+ </a>
224
+
225
+ <!-- Category 4 -->
226
+ <a href="#" class="category-card bg-white p-3 rounded-lg border border-gray-100 flex flex-col items-center transition-all duration-300">
227
+ <img src="https://img.lazcdn.com/g/p/6fc340f010800343bcfc032d267c02de.jpg_170x170q80.jpg" alt="Category" class="w-16 h-16 mb-2">
228
+ <span class="text-xs text-center">Baby Diapers</span>
229
+ </a>
230
+
231
+ <!-- Category 5 -->
232
+ <a href="#" class="category-card bg-white p-3 rounded-lg border border-gray-100 flex flex-col items-center transition-all duration-300">
233
+ <img src="https://img.lazcdn.com/g/p/d14ce87b0d592f239426e6072bcae333.jpg_170x170q80.jpg" alt="Category" class="w-16 h-16 mb-2">
234
+ <span class="text-xs text-center">Wireless Earbuds</span>
235
+ </a>
236
+
237
+ <!-- Category 6 -->
238
+ <a href="#" class="category-card bg-white p-3 rounded-lg border border-gray-100 flex flex-col items-center transition-all duration-300">
239
+ <img src="https://img.lazcdn.com/g/p/752ccfb0ca1f73b01b39d6e95105f6fa.jpg_170x170q80.jpg" alt="Category" class="w-16 h-16 mb-2">
240
+ <span class="text-xs text-center">Power Banks</span>
241
+ </a>
242
+
243
+ <!-- Category 7 -->
244
+ <a href="#" class="category-card bg-white p-3 rounded-lg border border-gray-100 flex flex-col items-center transition-all duration-300">
245
+ <img src="https://img.lazcdn.com/g/p/e5d29cf284c2f854f32a163e73b5a6d4.jpg_170x170q80.jpg" alt="Category" class="w-16 h-16 mb-2">
246
+ <span class="text-xs text-center">Christmas Decor</span>
247
+ </a>
248
+
249
+ <!-- Category 8 -->
250
+ <a href="#" class="category-card bg-white p-3 rounded-lg border border-gray-100 flex flex-col items-center transition-all duration-300">
251
+ <img src="https://img.lazcdn.com/g/p/1f557e638eaad20a32281666a023a927.jpg_170x170q80.jpg" alt="Category" class="w-16 h-16 mb-2">
252
+ <span class="text-xs text-center">Electrical Parts</span>
253
+ </a>
254
+ </div>
255
+ </div>
256
+ </div>
257
+
258
+ <!-- App Download Banner -->
259
+ <div class="bg-orange-50 mt-6 py-8 px-4">
260
+ <div class="container mx-auto flex flex-col md:flex-row items-center">
261
+ <div class="md:w-1/2 mb-6 md:mb-0">
262
+ <h2 class="text-2xl font-bold mb-2">TRY OUR APP</h2>
263
+ <p class="text-gray-700 mb-4">Download the App for the best experience</p>
264
+ <div class="flex items-center mb-4">
265
+ <div class="flex items-center mr-4">
266
+ <img src="https://img.lazcdn.com/g/tps/imgextra/i4/O1CN01cAMOjU1zqQJZU8EbT_!!6000000006765-2-tps-19-18.png_80x80q80.png" alt="Rating" class="w-4 h-4 mr-1">
267
+ <span class="text-sm">4.8 Rated</span>
268
+ </div>
269
+ </div>
270
+ <div class="grid grid-cols-2 gap-4 mb-4">
271
+ <div class="flex items-center">
272
+ <img src="https://img.lazcdn.com/g/tps/imgextra/i2/O1CN01n3PMa828kJZVuCbPp_!!6000000007970-2-tps-72-72.png_150x150q80.png" alt="Free Shipping" class="w-8 h-8 mr-2">
273
+ <span class="text-sm">FREE SHIPPING</span>
274
+ </div>
275
+ <div class="flex items-center">
276
+ <img src="https://img.lazcdn.com/g/tps/imgextra/i3/O1CN01J03SMW1lebTE7xkaN_!!6000000004844-2-tps-72-72.png_150x150q80.png" alt="Vouchers" class="w-8 h-8 mr-2">
277
+ <span class="text-sm">EXCLUSIVE VOUCHERS</span>
278
+ </div>
279
+ </div>
280
+ <div class="flex space-x-4">
281
+ <a href="#"><img src="https://img.lazcdn.com/us/domino/392fe20d-96d5-4573-956d-396590336135_PH-126-42.png" alt="App Store" class="h-10"></a>
282
+ <a href="#"><img src="https://img.lazcdn.com/us/domino/53ad5c74-1b53-4e43-83ce-7ffc0c9ffa4b_PH-126-42.png" alt="Play Store" class="h-10"></a>
283
+ </div>
284
+ </div>
285
+ <div class="md:w-1/2 flex justify-center">
286
+ <img src="https://img.lazcdn.com/us/domino/0942ea5ea6ff9ca262ea382b52b1500e.png_360x360q80.png" alt="App QR Code" class="w-48 h-48">
287
+ </div>
288
+ </div>
289
+ </div>
290
+
291
+ <!-- Footer -->
292
+ <footer class="bg-gray-100 mt-8 py-8 px-4">
293
+ <div class="container mx-auto">
294
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
295
+ <div>
296
+ <h3 class="font-bold mb-4">Customer Care</h3>
297
+ <ul class="space-y-2 text-sm">
298
+ <li><a href="#" class="hover:text-orange-500">Help Center</a></li>
299
+ <li><a href="#" class="hover:text-orange-500">How to Buy</a></li>
300
+ <li><a href="#" class="hover:text-orange-500">Shipping & Delivery</a></li>
301
+ <li><a href="#" class="hover:text-orange-500">International Product Policy</a></li>
302
+ <li><a href="#" class="hover:text-orange-500">How to Return</a></li>
303
+ <li><a href="#" class="hover:text-orange-500">Contact Us</a></li>
304
+ </ul>
305
+ </div>
306
+
307
+ <div>
308
+ <h3 class="font-bold mb-4">Lazada</h3>
309
+ <ul class="space-y-2 text-sm">
310
+ <li><a href="#" class="hover:text-orange-500">About Lazada</a></li>
311
+ <li><a href="#" class="hover:text-orange-500">Affiliate Program</a></li>
312
+ <li><a href="#" class="hover:text-orange-500">Careers</a></li>
313
+ <li><a href="#" class="hover:text-orange-500">Terms & Conditions</a></li>
314
+ <li><a href="#" class="hover:text-orange-500">Privacy Policy</a></li>
315
+ <li><a href="#" class="hover:text-orange-500">Press & Media</a></li>
316
+ </ul>
317
+ </div>
318
+
319
+ <div>
320
+ <h3 class="font-bold mb-4">Download the App</h3>
321
+ <div class="flex space-x-2 mb-4">
322
+ <a href="#"><img src="https://img.lazcdn.com/us/domino/392fe20d-96d5-4573-956d-396590336135_PH-126-42.png" alt="App Store" class="h-10"></a>
323
+ <a href="#"><img src="https://img.lazcdn.com/us/domino/53ad5c74-1b53-4e43-83ce-7ffc0c9ffa4b_PH-126-42.png" alt="Play Store" class="h-10"></a>
324
+ </div>
325
+ <img src="https://img.lazcdn.com/us/media/d33f1c45a4bd2fc773f8614625ed9cee-165-165.png" alt="Download App" class="w-32">
326
+ </div>
327
+
328
+ <div>
329
+ <h3 class="font-bold mb-4">Payment Methods</h3>
330
+ <div class="grid grid-cols-3 gap-2 mb-4">
331
+ <img src="https://img.lazcdn.com/g/tps/tfs/TB1a7taR.Y1gK0jSZFCXXcwqXXa-824-305.png" alt="Lazada Wallet" class="h-8">
332
+ <img src="https://img.lazcdn.com/us/domino/92e4b5da-14a4-4f22-a72b-6334933196ff_PH-117-70.png" alt="Visa" class="h-8">
333
+ <img src="https://img.lazcdn.com/us/domino/2cd27cdf-a067-4ca6-a117-3a9232b058b3_PH-63-48.png" alt="Mastercard" class="h-8">
334
+ <img src="https://img.lazcdn.com/us/domino/862b3627-86a5-4d33-a548-2ad2feab3f35_PH-53-39.png" alt="JCB" class="h-8">
335
+ <img src="https://img.lazcdn.com/g/tps/tfs/TB1uQjzOVzqK1RjSZFvXXcB7VXa-225-114.png" alt="American Express" class="h-8">
336
+ <img src="https://img.lazcdn.com/us/domino/df528871-ca3b-49ae-8338-2f23fc7bdc60_PH-42-42.png" alt="GCash" class="h-8">
337
+ </div>
338
+
339
+ <h3 class="font-bold mb-2 mt-4">Delivery Services</h3>
340
+ <div class="grid grid-cols-3 gap-2">
341
+ <img src="https://img.lazcdn.com/g/tps/imgextra/i3/O1CN01RNizk522j2cPtaRjc_!!6000000007155-2-tps-96-70.png" alt="Lazada Logistics" class="h-8">
342
+ <img src="https://img.lazcdn.com/g/tps/imgextra/i2/O1CN01md1Up71hMVCAxe2HZ_!!6000000004263-2-tps-96-70.png" alt="JT" class="h-8">
343
+ <img src="https://img.lazcdn.com/g/tps/imgextra/i2/O1CN013FblIV1u8qO5VGIBd_!!6000000005993-2-tps-96-70.png" alt="Flash Express" class="h-8">
344
+ </div>
345
+ </div>
346
+ </div>
347
+
348
+ <div class="border-t border-gray-200 mt-8 pt-8">
349
+ <div class="flex flex-col md:flex-row justify-between items-center">
350
+ <div class="mb-4 md:mb-0">
351
+ <p class="text-sm text-gray-600">© Lazada 2025</p>
352
+ </div>
353
+ <div class="flex space-x-4">
354
+ <a href="#"><img src="https://img.lazcdn.com/g/tps/imgextra/i3/O1CN01Wdetn224xMIRNihao_!!6000000007457-2-tps-34-34.png" alt="Facebook" class="h-6"></a>
355
+ <a href="#"><img src="https://img.lazcdn.com/g/tps/imgextra/i4/O1CN01D6oQr31GPG1ONK9jd_!!6000000000614-2-tps-34-34.png" alt="LinkedIn" class="h-6"></a>
356
+ <a href="#"><img src="https://img.lazcdn.com/g/tps/imgextra/i4/O1CN01zt1zOu1zsFnzoIWje_!!6000000006769-2-tps-34-34.png" alt="YouTube" class="h-6"></a>
357
+ <a href="#"><img src="https://img.lazcdn.com/g/tps/imgextra/i4/O1CN011gka8L1E0PIZlHK7e_!!6000000000289-2-tps-34-34.png" alt="Instagram" class="h-6"></a>
358
+ <a href="#"><img src="https://img.lazcdn.com/g/tps/imgextra/i3/O1CN01bSHOIg1O2N9lO20XK_!!6000000001647-2-tps-34-34.png" alt="Twitter" class="h-6"></a>
359
+ </div>
360
+ </div>
361
+ </div>
362
+ </div>
363
+ </footer>
364
+
365
+ <script>
366
+ AOS.init();
367
+ feather.replace();
368
+ </script>
369
+ </body>
370
  </html>
prompts.txt ADDED
File without changes