ikhlaspv commited on
Commit
425cdc4
·
verified ·
1 Parent(s): 0c1dd71

- Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +417 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Modestus
3
- emoji: 📊
4
- colorFrom: pink
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: modestus
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: red
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,417 @@
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>Aab Collection - Modest Fashion Online</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
+ .dropdown:hover .dropdown-menu {
11
+ display: block;
12
+ }
13
+ .nav-link:hover {
14
+ color: #000;
15
+ border-bottom: 2px solid #000;
16
+ }
17
+ .product-card:hover .product-overlay {
18
+ opacity: 1;
19
+ }
20
+ .product-overlay {
21
+ transition: opacity 0.3s ease;
22
+ }
23
+ </style>
24
+ </head>
25
+ <body class="font-sans text-gray-800">
26
+ <!-- Top Banner -->
27
+ <div class="bg-black text-white text-center py-2 text-sm">
28
+ Free Shipping on all orders over $175
29
+ </div>
30
+
31
+ <!-- Header -->
32
+ <header class="border-b border-gray-200">
33
+ <div class="container mx-auto px-4">
34
+ <!-- Top Nav -->
35
+ <div class="flex justify-between items-center py-4">
36
+ <div class="flex items-center space-x-4">
37
+ <a href="#" class="text-sm font-medium">New Arrivals</a>
38
+ <a href="#" class="text-sm font-medium">Special Prices</a>
39
+ </div>
40
+
41
+ <div class="text-center">
42
+ <a href="#" class="text-2xl font-serif font-bold">Modestus</a>
43
+ </div>
44
+
45
+ <div class="flex items-center space-x-4">
46
+ <div class="relative group">
47
+ <button class="flex items-center">
48
+ <img src="https://cdn.shopify.com/static/images/flags/us.svg" alt="US" class="w-5 h-5 mr-1">
49
+ <span class="text-sm">us</span>
50
+ </button>
51
+ <div class="hidden group-hover:block absolute right-0 mt-2 w-48 bg-white shadow-lg rounded-md z-10">
52
+ <a href="#" class="block px-4 py-2 text-sm hover:bg-gray-100">
53
+ <img src="https://cdn.shopify.com/static/images/flags/uk.svg" alt="UK" class="w-5 h-5 inline mr-2">
54
+ United Kingdom
55
+ </a>
56
+ <a href="#" class="block px-4 py-2 text-sm hover:bg-gray-100">
57
+ <img src="https://cdn.shopify.com/static/images/flags/eu.svg" alt="EU" class="w-5 h-5 inline mr-2">
58
+ Europe
59
+ </a>
60
+ <a href="#" class="block px-4 py-2 text-sm hover:bg-gray-100">
61
+ <img src="https://us.aabcollection.com/cdn/shop/t/2/assets/flag-int.svg" alt="International" class="w-5 h-5 inline mr-2">
62
+ International
63
+ </a>
64
+ </div>
65
+ </div>
66
+ <a href="#" class="text-sm"><i class="far fa-heart"></i> (0)</a>
67
+ <a href="#" class="text-sm"><i class="fas fa-shopping-bag"></i> (0)</a>
68
+ </div>
69
+ </div>
70
+
71
+ <!-- Main Nav -->
72
+ <nav class="hidden md:flex justify-center py-4 space-x-8">
73
+ <a href="#" class="nav-link pb-2 text-sm font-medium">New in</a>
74
+ <a href="#" class="nav-link pb-2 text-sm font-medium">Clothing</a>
75
+ <a href="#" class="nav-link pb-2 text-sm font-medium">Hijabs</a>
76
+ <a href="#" class="nav-link pb-2 text-sm font-medium">Mens</a>
77
+ <a href="#" class="nav-link pb-2 text-sm font-medium">Journal</a>
78
+ <a href="#" class="nav-link pb-2 text-sm font-medium">Lookbook</a>
79
+ </nav>
80
+
81
+ <!-- Mobile Menu Button -->
82
+ <div class="md:hidden flex justify-center py-4">
83
+ <button class="text-gray-700">
84
+ <i class="fas fa-bars text-xl"></i>
85
+ </button>
86
+ </div>
87
+ </div>
88
+ </header>
89
+
90
+ <!-- Hero Section -->
91
+ <section class="relative">
92
+ <div class="flex flex-col md:flex-row">
93
+ <div class="w-full md:w-1/2">
94
+ <img src="https://us.aabcollection.com/cdn/shop/files/Website_-_Hero_Desktop_3000_x_1400_px_12_small.jpg" alt="Sale Banner" class="w-full h-full object-cover">
95
+ </div>
96
+ <div class="w-full md:w-1/2">
97
+ <img src="https://us.aabcollection.com/cdn/shop/files/Destop_-_Hero_Banner_small.jpg" alt="New Arrivals" class="w-full h-full object-cover">
98
+ </div>
99
+ </div>
100
+ <div class="absolute inset-0 flex items-center justify-center">
101
+ <div class="text-center text-white bg-black bg-opacity-50 p-8">
102
+ <h1 class="text-3xl md:text-5xl font-serif mb-4">MODERN MODESTY, TIMELESS STYLE</h1>
103
+ <p class="text-lg">Designed in London, worn worldwide. Elegant silhouettes, ethical craftsmanship, and a commitment to quality since 2009.</p>
104
+ </div>
105
+ </div>
106
+ </section>
107
+
108
+ <!-- Reviews Banner -->
109
+ <section class="bg-gray-100 py-8">
110
+ <div class="container mx-auto px-4 text-center">
111
+ <img src="https://assets.reviews.io/img/all-global-assets/logo/reviewsio-logo--inverted.svg" alt="REVIEWS.io" class="h-8 mx-auto mb-4">
112
+ <h3 class="text-lg font-medium mb-2">Our customers say</h3>
113
+ <div class="flex justify-center items-center mb-4">
114
+ <div class="text-yellow-400 text-xl mr-2">
115
+ ★ ★ ★ ★ ★
116
+ </div>
117
+ <span class="font-bold">4.3</span>
118
+ <span class="text-gray-600 ml-1">Based on 1,463 reviews</span>
119
+ </div>
120
+ </div>
121
+ </section>
122
+
123
+ <!-- Shop by Category -->
124
+ <section class="py-12 container mx-auto px-4">
125
+ <h2 class="text-2xl font-serif text-center mb-8">SHOP BY CATEGORY</h2>
126
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
127
+ <div class="relative group">
128
+ <img src="https://us.aabcollection.com/cdn/shop/files/1_0211ea73-05f1-40b0-b80f-4dad4a4540ef_small.jpg" alt="Abayas" class="w-full">
129
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
130
+ <h3 class="text-white font-medium text-lg">Abayas</h3>
131
+ </div>
132
+ </div>
133
+ <div class="relative group">
134
+ <img src="https://us.aabcollection.com/cdn/shop/files/2_176a0642-02e6-498a-bee1-595b17a99066_small.jpg" alt="Co-Ords" class="w-full">
135
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
136
+ <h3 class="text-white font-medium text-lg">Co-Ords</h3>
137
+ </div>
138
+ </div>
139
+ <div class="relative group">
140
+ <img src="https://us.aabcollection.com/cdn/shop/files/3_small.jpg" alt="Summer Hijabs" class="w-full">
141
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
142
+ <h3 class="text-white font-medium text-lg">Summer Hijabs</h3>
143
+ </div>
144
+ </div>
145
+ <div class="relative group">
146
+ <img src="https://us.aabcollection.com/cdn/shop/files/4_c48b79c6-6864-45cc-922d-9c206b040750_small.jpg" alt="Maxi Dresses" class="w-full">
147
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
148
+ <h3 class="text-white font-medium text-lg">Maxi Dresses</h3>
149
+ </div>
150
+ </div>
151
+ </div>
152
+ </section>
153
+
154
+ <!-- Just Landed -->
155
+ <section class="py-12 bg-gray-50">
156
+ <div class="container mx-auto px-4">
157
+ <h2 class="text-2xl font-serif text-center mb-8">Just Landed</h2>
158
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
159
+ <!-- Product 1 -->
160
+ <div class="product-card relative">
161
+ <div class="relative">
162
+ <img src="https://us.aabcollection.com/cdn/shop/files/Ruffled_Sleeve_Maxi_1_190x.jpg" alt="Ruffled Sleeve Maxi" class="w-full">
163
+ <div class="product-overlay absolute inset-0 bg-black bg-opacity-0 hover:bg-opacity-10 flex flex-col justify-between p-4 opacity-0">
164
+ <div class="flex justify-between w-full">
165
+ <span class="bg-white px-2 py-1 text-xs">New in</span>
166
+ <button class="bg-white rounded-full w-8 h-8 flex items-center justify-center">
167
+ <i class="far fa-heart"></i>
168
+ </button>
169
+ </div>
170
+ <button class="bg-black text-white py-2 text-sm w-full">Quick View</button>
171
+ </div>
172
+ </div>
173
+ <div class="mt-2">
174
+ <h3 class="text-sm">Ruffled Sleeve Maxi</h3>
175
+ <p class="font-medium">$146.00</p>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- Product 2 -->
180
+ <div class="product-card relative">
181
+ <div class="relative">
182
+ <img src="https://us.aabcollection.com/cdn/shop/files/AB6A9926_190x.jpg" alt="Two Piece Open Abaya With Slip Mint" class="w-full">
183
+ <div class="product-overlay absolute inset-0 bg-black bg-opacity-0 hover:bg-opacity-10 flex flex-col justify-between p-4 opacity-0">
184
+ <div class="flex justify-between w-full">
185
+ <span class="bg-white px-2 py-1 text-xs">New in</span>
186
+ <button class="bg-white rounded-full w-8 h-8 flex items-center justify-center">
187
+ <i class="far fa-heart"></i>
188
+ </button>
189
+ </div>
190
+ <button class="bg-black text-white py-2 text-sm w-full">Quick View</button>
191
+ </div>
192
+ </div>
193
+ <div class="mt-2">
194
+ <h3 class="text-sm">Two Piece Open Abaya With Slip Mint</h3>
195
+ <p class="font-medium">$86.00</p>
196
+ <div class="flex flex-wrap mt-1">
197
+ <div class="w-4 h-4 rounded-full bg-purple-800 mr-1 mb-1"></div>
198
+ <div class="w-4 h-4 rounded-full bg-black mr-1 mb-1"></div>
199
+ <div class="w-4 h-4 rounded-full bg-blue-600 mr-1 mb-1"></div>
200
+ <div class="w-4 h-4 rounded-full bg-red-900 mr-1 mb-1"></div>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Product 3 -->
206
+ <div class="product-card relative">
207
+ <div class="relative">
208
+ <img src="https://us.aabcollection.com/cdn/shop/files/UntitledCapture22180_190x.jpg" alt="Two Piece Open Abaya With Slip Olive Green" class="w-full">
209
+ <div class="product-overlay absolute inset-0 bg-black bg-opacity-0 hover:bg-opacity-10 flex flex-col justify-between p-4 opacity-0">
210
+ <div class="flex justify-between w-full">
211
+ <span class="bg-white px-2 py-1 text-xs">New in</span>
212
+ <button class="bg-white rounded-full w-8 h-8 flex items-center justify-center">
213
+ <i class="far fa-heart"></i>
214
+ </button>
215
+ </div>
216
+ <button class="bg-black text-white py-2 text-sm w-full">Quick View</button>
217
+ </div>
218
+ </div>
219
+ <div class="mt-2">
220
+ <h3 class="text-sm">Two Piece Open Abaya With Slip Olive Green</h3>
221
+ <p class="font-medium">$86.00</p>
222
+ <div class="flex flex-wrap mt-1">
223
+ <div class="w-4 h-4 rounded-full bg-purple-800 mr-1 mb-1"></div>
224
+ <div class="w-4 h-4 rounded-full bg-black mr-1 mb-1"></div>
225
+ <div class="w-4 h-4 rounded-full bg-blue-600 mr-1 mb-1"></div>
226
+ <div class="w-4 h-4 rounded-full bg-red-900 mr-1 mb-1"></div>
227
+ </div>
228
+ </div>
229
+ </div>
230
+
231
+ <!-- Product 4 -->
232
+ <div class="product-card relative">
233
+ <div class="relative">
234
+ <img src="https://us.aabcollection.com/cdn/shop/files/Monet_Kaftan_1_190x.jpg" alt="Monet Kaftan" class="w-full">
235
+ <div class="product-overlay absolute inset-0 bg-black bg-opacity-0 hover:bg-opacity-10 flex flex-col justify-between p-4 opacity-0">
236
+ <div class="flex justify-between w-full">
237
+ <span class="bg-white px-2 py-1 text-xs">New in</span>
238
+ <button class="bg-white rounded-full w-8 h-8 flex items-center justify-center">
239
+ <i class="far fa-heart"></i>
240
+ </button>
241
+ </div>
242
+ <button class="bg-black text-white py-2 text-sm w-full">Quick View</button>
243
+ </div>
244
+ </div>
245
+ <div class="mt-2">
246
+ <h3 class="text-sm">Monet Kaftan</h3>
247
+ <p class="font-medium">$106.00</p>
248
+ </div>
249
+ </div>
250
+ </div>
251
+ </div>
252
+ </section>
253
+
254
+ <!-- Features Banner -->
255
+ <section class="py-12 bg-white">
256
+ <div class="container mx-auto px-4">
257
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
258
+ <div>
259
+ <div class="text-3xl mb-2">📦</div>
260
+ <h3 class="font-medium mb-2">Easy returns</h3>
261
+ <p class="text-gray-600">Paperless returns, no fuss, no drama</p>
262
+ </div>
263
+ <div>
264
+ <div class="text-3xl mb-2">✈️</div>
265
+ <h3 class="font-medium mb-2">WORLDWIDE DELIVERY</h3>
266
+ <p class="text-gray-600">We deliver quickly, no matter where you are in the world</p>
267
+ </div>
268
+ <div>
269
+ <div class="text-3xl mb-2">❤️</div>
270
+ <h3 class="font-medium mb-2">MADE WITH LOVE</h3>
271
+ <p class="text-gray-600">Modesty at the core of every design</p>
272
+ </div>
273
+ </div>
274
+ </div>
275
+ </section>
276
+
277
+ <!-- New in Hijabs -->
278
+ <section class="py-12 bg-gray-50">
279
+ <div class="container mx-auto px-4">
280
+ <h2 class="text-2xl font-serif text-center mb-8">NEW IN HIJABS</h2>
281
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
282
+ <div class="relative group">
283
+ <img src="https://us.aabcollection.com/cdn/shop/files/premium_jersey_small.png" alt="Premium Jersey Hijabs" class="w-full">
284
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
285
+ <h3 class="text-white font-medium text-lg">PREMIUM JERSEY HIJABS</h3>
286
+ </div>
287
+ </div>
288
+ <div class="relative group">
289
+ <img src="https://us.aabcollection.com/cdn/shop/files/chiffon_silk_20179c9c-3b1c-4356-a89f-f0509c35447b_small.png" alt="Chiffon Silk Hijabs" class="w-full">
290
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
291
+ <h3 class="text-white font-medium text-lg">CHIFFON SILK HIJABS</h3>
292
+ </div>
293
+ </div>
294
+ <div class="relative group">
295
+ <img src="https://us.aabcollection.com/cdn/shop/files/12FebEcom_Hijabs18336_0f223a1e-16a1-4e4d-896a-2ebd25f51ab1_small.jpg" alt="Limited Edition Print Hijabs" class="w-full">
296
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
297
+ <h3 class="text-white font-medium text-lg">LIMITED EDITION PRINT HIJABS</h3>
298
+ </div>
299
+ </div>
300
+ <div class="relative group">
301
+ <img src="https://us.aabcollection.com/cdn/shop/files/modal_802da819-051c-436f-8f2d-d0ee309aa713_small.png" alt="Premium Modal Hijabs" class="w-full">
302
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
303
+ <h3 class="text-white font-medium text-lg">PREMIUM MODAL HIJABS</h3>
304
+ </div>
305
+ </div>
306
+ </div>
307
+ </div>
308
+ </section>
309
+
310
+ <!-- Discover More -->
311
+ <section class="py-12 bg-white">
312
+ <div class="container mx-auto px-4">
313
+ <h2 class="text-2xl font-serif text-center mb-8">DISCOVER MORE</h2>
314
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
315
+ <div class="relative group">
316
+ <img src="https://us.aabcollection.com/cdn/shop/files/Discover_More_-_Girls_Abaya_small.jpg" alt="Girls Abayas" class="w-full">
317
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
318
+ <h3 class="text-white font-medium text-lg">Girls Abayas</h3>
319
+ </div>
320
+ </div>
321
+ <div class="relative group">
322
+ <img src="https://us.aabcollection.com/cdn/shop/files/hijab_magnets2q_small.png" alt="HIJAB MAGNETS" class="w-full">
323
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
324
+ <h3 class="text-white font-medium text-lg">HIJAB MAGNETS</h3>
325
+ </div>
326
+ </div>
327
+ <div class="relative group">
328
+ <img src="https://us.aabcollection.com/cdn/shop/files/A57_e6c4c6ca-4901-4777-8535-3bfadac1b17f_small.jpg" alt="bakhoor" class="w-full">
329
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
330
+ <h3 class="text-white font-medium text-lg">bakhoor</h3>
331
+ </div>
332
+ </div>
333
+ <div class="relative group">
334
+ <img src="https://us.aabcollection.com/cdn/shop/files/swimwear_banner_8f8d3eb9-d2a8-4606-a115-81ded493bd15_small.png" alt="Modest Swimwear" class="w-full">
335
+ <div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-20 transition duration-300 flex items-end justify-center pb-4">
336
+ <h3 class="text-white font-medium text-lg">Modest Swimwear</h3>
337
+ </div>
338
+ </div>
339
+ </div>
340
+ </div>
341
+ </section>
342
+
343
+ <!-- Footer -->
344
+ <footer class="bg-gray-100 py-12">
345
+ <div class="container mx-auto px-4">
346
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
347
+ <div>
348
+ <h4 class="font-medium mb-4">Delivery & Returns</h4>
349
+ <p class="text-gray-600 mb-4">Free shipping for orders over $175.00</p>
350
+ <ul class="space-y-2">
351
+ <li><a href="#" class="text-gray-600 hover:text-black">Shipping information</a></li>
352
+ <li><a href="#" class="text-gray-600 hover:text-black">Track your order</a></li>
353
+ <li><a href="#" class="text-gray-600 hover:text-black">Returns</a></li>
354
+ </ul>
355
+ </div>
356
+
357
+ <div>
358
+ <h4 class="font-medium mb-4">About us</h4>
359
+ <ul class="space-y-2">
360
+ <li><a href="#" class="text-gray-600 hover:text-black">Our story</a></li>
361
+ <li><a href="#" class="text-gray-600 hover:text-black">Visit us</a></li>
362
+ <li><a href="#" class="text-gray-600 hover:text-black">Careers</a></li>
363
+ <li><a href="#" class="text-gray-600 hover:text-black">Journal</a></li>
364
+ <li><a href="#" class="text-gray-600 hover:text-black">Loyalty</a></li>
365
+ </ul>
366
+ </div>
367
+
368
+ <div>
369
+ <h4 class="font-medium mb-4">Customer Care</h4>
370
+ <ul class="space-y-2">
371
+ <li><a href="#" class="text-gray-600 hover:text-black">Size guide</a></li>
372
+ <li><a href="#" class="text-gray-600 hover:text-black">Care & repair</a></li>
373
+ <li><a href="#" class="text-gray-600 hover:text-black">Frequently asked questions</a></li>
374
+ <li><a href="#" class="text-gray-600 hover:text-black">Contact us</a></li>
375
+ <li><a href="#" class="text-gray-600 hover:text-black">Privacy policy</a></li>
376
+ <li><a href="#" class="text-gray-600 hover:text-black">Terms & conditions</a></li>
377
+ </ul>
378
+ </div>
379
+
380
+ <div>
381
+ <h4 class="font-medium mb-4">Get in touch</h4>
382
+ <p class="text-gray-600 mb-2">Call us Mon-Fri 10am-4:30pm</p>
383
+ <a href="tel:+442038237768" class="text-gray-600 hover:text-black block mb-4">+44 (0) 0203 823 7768</a>
384
+
385
+ <p class="text-gray-600 mb-2">Chat with us on Whatsapp</p>
386
+ <a href="https://wa.me/message/6YKFKHMUAHQ3G1" class="text-gray-600 hover:text-black block mb-4">+44 (0) 203 823 7768</a>
387
+
388
+ <p class="text-gray-600 mb-2">Email us</p>
389
+ <a href="mailto:admin@aabcollection.com" class="text-gray-600 hover:text-black block mb-4">admin@aabcollection.com</a>
390
+
391
+ <h4 class="font-medium mb-2">JOIN OUR COMMUNITY</h4>
392
+ <p class="text-gray-600 mb-2 text-sm">Exclusive offers and sneak peeks are reserved for those on our mailing list.</p>
393
+ <div class="flex mb-4">
394
+ <input type="email" placeholder="Your email" class="border border-gray-300 px-3 py-2 text-sm w-full">
395
+ <button class="bg-black text-white px-4 py-2 text-sm">SIGN UP</button>
396
+ </div>
397
+
398
+ <h4 class="font-medium mb-2">Follow us</h4>
399
+ <div class="flex space-x-4">
400
+ <a href="#" class="text-gray-600 hover:text-black"><i class="fab fa-facebook-f"></i></a>
401
+ <a href="#" class="text-gray-600 hover:text-black"><i class="fab fa-instagram"></i></a>
402
+ <a href="#" class="text-gray-600 hover:text-black"><i class="fab fa-youtube"></i></a>
403
+ <a href="#" class="text-gray-600 hover:text-black"><i class="fab fa-pinterest"></i></a>
404
+ </div>
405
+ </div>
406
+ </div>
407
+ </div>
408
+ </footer>
409
+
410
+ <script>
411
+ // Mobile menu toggle functionality would go here
412
+ document.addEventListener('DOMContentLoaded', function() {
413
+ // Mobile menu toggle would be implemented here
414
+ });
415
+ </script>
416
+ <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=ikhlaspv/modestus" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
417
+ </html>