Hmayda commited on
Commit
4d3f1e4
·
verified ·
1 Parent(s): 5c5e7c1

genere moi un site web pour la vente des accesoires homme et femme - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +509 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Elegence
3
- emoji: 🌍
4
- colorFrom: blue
5
- colorTo: pink
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: elegence
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: green
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,509 @@
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="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Elégance - Accessoires Mode Homme & Femme</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
+ /* Custom CSS for animations and effects */
11
+ .product-card:hover {
12
+ transform: translateY(-5px);
13
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
14
+ }
15
+
16
+ .nav-link::after {
17
+ content: '';
18
+ display: block;
19
+ width: 0;
20
+ height: 2px;
21
+ background: #4f46e5;
22
+ transition: width 0.3s;
23
+ }
24
+
25
+ .nav-link:hover::after {
26
+ width: 100%;
27
+ }
28
+
29
+ @keyframes fadeIn {
30
+ from { opacity: 0; transform: translateY(20px); }
31
+ to { opacity: 1; transform: translateY(0); }
32
+ }
33
+
34
+ .fade-in {
35
+ animation: fadeIn 0.8s ease forwards;
36
+ }
37
+
38
+ .delay-1 { animation-delay: 0.2s; }
39
+ .delay-2 { animation-delay: 0.4s; }
40
+ .delay-3 { animation-delay: 0.6s; }
41
+
42
+ /* Custom scrollbar */
43
+ ::-webkit-scrollbar {
44
+ width: 8px;
45
+ }
46
+
47
+ ::-webkit-scrollbar-track {
48
+ background: #f1f1f1;
49
+ }
50
+
51
+ ::-webkit-scrollbar-thumb {
52
+ background: #888;
53
+ border-radius: 10px;
54
+ }
55
+
56
+ ::-webkit-scrollbar-thumb:hover {
57
+ background: #555;
58
+ }
59
+ </style>
60
+ </head>
61
+ <body class="bg-gray-50 font-sans">
62
+ <!-- Header -->
63
+ <header class="bg-white shadow-sm sticky top-0 z-50">
64
+ <div class="container mx-auto px-4 py-3">
65
+ <div class="flex justify-between items-center">
66
+ <!-- Logo -->
67
+ <div class="flex items-center">
68
+ <a href="#" class="text-2xl font-bold text-indigo-600 flex items-center">
69
+ <i class="fas fa-crown mr-2"></i>
70
+ Elégance
71
+ </a>
72
+ </div>
73
+
74
+ <!-- Navigation Desktop -->
75
+ <nav class="hidden md:flex space-x-8">
76
+ <a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Accueil</a>
77
+ <a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Homme</a>
78
+ <a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Femme</a>
79
+ <a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Nouveautés</a>
80
+ <a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Contact</a>
81
+ </nav>
82
+
83
+ <!-- Icons -->
84
+ <div class="flex items-center space-x-4">
85
+ <a href="#" class="text-gray-700 hover:text-indigo-600">
86
+ <i class="fas fa-search text-lg"></i>
87
+ </a>
88
+ <a href="#" class="text-gray-700 hover:text-indigo-600">
89
+ <i class="fas fa-heart text-lg"></i>
90
+ </a>
91
+ <a href="#" class="text-gray-700 hover:text-indigo-600 relative">
92
+ <i class="fas fa-shopping-bag text-lg"></i>
93
+ <span class="absolute -top-2 -right-2 bg-indigo-600 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">3</span>
94
+ </a>
95
+
96
+ <!-- Mobile menu button -->
97
+ <button id="mobile-menu-button" class="md:hidden text-gray-700">
98
+ <i class="fas fa-bars text-xl"></i>
99
+ </button>
100
+ </div>
101
+ </div>
102
+
103
+ <!-- Mobile Navigation -->
104
+ <div id="mobile-menu" class="hidden md:hidden mt-4 pb-4">
105
+ <a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Accueil</a>
106
+ <a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Homme</a>
107
+ <a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Femme</a>
108
+ <a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Nouveautés</a>
109
+ <a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Contact</a>
110
+ </div>
111
+ </div>
112
+ </header>
113
+
114
+ <!-- Hero Section -->
115
+ <section class="bg-gradient-to-r from-indigo-500 to-purple-600 text-white py-16 md:py-24">
116
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
117
+ <div class="md:w-1/2 mb-10 md:mb-0 fade-in">
118
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Accessoires de Mode Élégants</h1>
119
+ <p class="text-xl mb-6">Découvrez notre collection exclusive d'accessoires pour homme et femme. Qualité exceptionnelle, style incomparable.</p>
120
+ <div class="flex space-x-4">
121
+ <a href="#" class="bg-white text-indigo-600 px-6 py-3 rounded-full font-medium hover:bg-gray-100 transition duration-300">Collection Homme</a>
122
+ <a href="#" class="bg-transparent border-2 border-white px-6 py-3 rounded-full font-medium hover:bg-white hover:text-indigo-600 transition duration-300">Collection Femme</a>
123
+ </div>
124
+ </div>
125
+ <div class="md:w-1/2 fade-in delay-1">
126
+ <img src="https://images.unsplash.com/photo-1595341595379-cf2a0a12326a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Accessoires de mode" class="rounded-lg shadow-xl w-full h-auto">
127
+ </div>
128
+ </div>
129
+ </section>
130
+
131
+ <!-- Categories -->
132
+ <section class="py-16 bg-white">
133
+ <div class="container mx-auto px-4">
134
+ <h2 class="text-3xl font-bold text-center mb-12 fade-in">Nos Catégories</h2>
135
+
136
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6">
137
+ <!-- Category 1 -->
138
+ <div class="bg-gray-50 rounded-xl p-6 text-center hover:bg-indigo-50 transition duration-300 fade-in delay-1">
139
+ <div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-4">
140
+ <i class="fas fa-glasses text-indigo-600 text-2xl"></i>
141
+ </div>
142
+ <h3 class="font-bold text-lg mb-2">Lunettes</h3>
143
+ <p class="text-gray-600">Soleil & vue</p>
144
+ </div>
145
+
146
+ <!-- Category 2 -->
147
+ <div class="bg-gray-50 rounded-xl p-6 text-center hover:bg-indigo-50 transition duration-300 fade-in delay-1">
148
+ <div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-4">
149
+ <i class="fas fa-clock text-indigo-600 text-2xl"></i>
150
+ </div>
151
+ <h3 class="font-bold text-lg mb-2">Montres</h3>
152
+ <p class="text-gray-600">Classique & moderne</p>
153
+ </div>
154
+
155
+ <!-- Category 3 -->
156
+ <div class="bg-gray-50 rounded-xl p-6 text-center hover:bg-indigo-50 transition duration-300 fade-in delay-2">
157
+ <div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-4">
158
+ <i class="fas fa-scarf text-indigo-600 text-2xl"></i>
159
+ </div>
160
+ <h3 class="font-bold text-lg mb-2">Écharpes</h3>
161
+ <p class="text-gray-600">Soie & laine</p>
162
+ </div>
163
+
164
+ <!-- Category 4 -->
165
+ <div class="bg-gray-50 rounded-xl p-6 text-center hover:bg-indigo-50 transition duration-300 fade-in delay-2">
166
+ <div class="bg-indigo-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-4">
167
+ <i class="fas fa-ring text-indigo-600 text-2xl"></i>
168
+ </div>
169
+ <h3 class="font-bold text-lg mb-2">Bijoux</h3>
170
+ <p class="text-gray-600">Élégance intemporelle</p>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ </section>
175
+
176
+ <!-- Featured Products -->
177
+ <section class="py-16 bg-gray-50">
178
+ <div class="container mx-auto px-4">
179
+ <div class="flex justify-between items-center mb-8">
180
+ <h2 class="text-3xl font-bold fade-in">Nos Produits Populaires</h2>
181
+ <a href="#" class="text-indigo-600 font-medium hover:underline fade-in delay-1">Voir tout</a>
182
+ </div>
183
+
184
+ <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8">
185
+ <!-- Product 1 -->
186
+ <div class="bg-white rounded-xl overflow-hidden shadow-md product-card transition duration-300 fade-in">
187
+ <div class="relative">
188
+ <img src="https://images.unsplash.com/photo-1523170335258-f5ed118494a8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=880&q=80" alt="Montre homme" class="w-full h-64 object-cover">
189
+ <div class="absolute top-2 right-2 bg-indigo-600 text-white text-xs px-2 py-1 rounded-full">Nouveau</div>
190
+ </div>
191
+ <div class="p-4">
192
+ <div class="flex justify-between items-start">
193
+ <div>
194
+ <h3 class="font-bold text-lg">Montre Classique</h3>
195
+ <p class="text-gray-600">Pour Homme</p>
196
+ </div>
197
+ <div class="text-indigo-600 font-bold">€149.99</div>
198
+ </div>
199
+ <div class="mt-4 flex justify-between items-center">
200
+ <div class="flex text-yellow-400">
201
+ <i class="fas fa-star"></i>
202
+ <i class="fas fa-star"></i>
203
+ <i class="fas fa-star"></i>
204
+ <i class="fas fa-star"></i>
205
+ <i class="fas fa-star-half-alt"></i>
206
+ </div>
207
+ <button class="bg-indigo-600 text-white px-3 py-1 rounded-full hover:bg-indigo-700 transition duration-300">
208
+ <i class="fas fa-plus"></i>
209
+ </button>
210
+ </div>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- Product 2 -->
215
+ <div class="bg-white rounded-xl overflow-hidden shadow-md product-card transition duration-300 fade-in delay-1">
216
+ <div class="relative">
217
+ <img src="https://images.unsplash.com/photo-1590649880398-9d2b11b0a123?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=880&q=80" alt="Lunettes femme" class="w-full h-64 object-cover">
218
+ <div class="absolute top-2 right-2 bg-red-500 text-white text-xs px-2 py-1 rounded-full">-20%</div>
219
+ </div>
220
+ <div class="p-4">
221
+ <div class="flex justify-between items-start">
222
+ <div>
223
+ <h3 class="font-bold text-lg">Lunettes Carrées</h3>
224
+ <p class="text-gray-600">Pour Femme</p>
225
+ </div>
226
+ <div>
227
+ <span class="text-gray-400 line-through">€89.99</span>
228
+ <span class="text-indigo-600 font-bold ml-2">€71.99</span>
229
+ </div>
230
+ </div>
231
+ <div class="mt-4 flex justify-between items-center">
232
+ <div class="flex text-yellow-400">
233
+ <i class="fas fa-star"></i>
234
+ <i class="fas fa-star"></i>
235
+ <i class="fas fa-star"></i>
236
+ <i class="fas fa-star"></i>
237
+ <i class="far fa-star"></i>
238
+ </div>
239
+ <button class="bg-indigo-600 text-white px-3 py-1 rounded-full hover:bg-indigo-700 transition duration-300">
240
+ <i class="fas fa-plus"></i>
241
+ </button>
242
+ </div>
243
+ </div>
244
+ </div>
245
+
246
+ <!-- Product 3 -->
247
+ <div class="bg-white rounded-xl overflow-hidden shadow-md product-card transition duration-300 fade-in delay-2">
248
+ <div class="relative">
249
+ <img src="https://images.unsplash.com/photo-1605106702734-205df2246ce5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Écharpe" class="w-full h-64 object-cover">
250
+ </div>
251
+ <div class="p-4">
252
+ <div class="flex justify-between items-start">
253
+ <div>
254
+ <h3 class="font-bold text-lg">Écharpe en Soie</h3>
255
+ <p class="text-gray-600">Unisexe</p>
256
+ </div>
257
+ <div class="text-indigo-600 font-bold">€45.99</div>
258
+ </div>
259
+ <div class="mt-4 flex justify-between items-center">
260
+ <div class="flex text-yellow-400">
261
+ <i class="fas fa-star"></i>
262
+ <i class="fas fa-star"></i>
263
+ <i class="fas fa-star"></i>
264
+ <i class="fas fa-star"></i>
265
+ <i class="fas fa-star"></i>
266
+ </div>
267
+ <button class="bg-indigo-600 text-white px-3 py-1 rounded-full hover:bg-indigo-700 transition duration-300">
268
+ <i class="fas fa-plus"></i>
269
+ </button>
270
+ </div>
271
+ </div>
272
+ </div>
273
+
274
+ <!-- Product 4 -->
275
+ <div class="bg-white rounded-xl overflow-hidden shadow-md product-card transition duration-300 fade-in delay-3">
276
+ <div class="relative">
277
+ <img src="https://images.unsplash.com/photo-1611591437281-460914d7f7f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Bracelet" class="w-full h-64 object-cover">
278
+ <div class="absolute top-2 right-2 bg-green-500 text-white text-xs px-2 py-1 rounded-full">Éco</div>
279
+ </div>
280
+ <div class="p-4">
281
+ <div class="flex justify-between items-start">
282
+ <div>
283
+ <h3 class="font-bold text-lg">Bracelet Cuir</h3>
284
+ <p class="text-gray-600">Pour Homme</p>
285
+ </div>
286
+ <div class="text-indigo-600 font-bold">€32.50</div>
287
+ </div>
288
+ <div class="mt-4 flex justify-between items-center">
289
+ <div class="flex text-yellow-400">
290
+ <i class="fas fa-star"></i>
291
+ <i class="fas fa-star"></i>
292
+ <i class="fas fa-star"></i>
293
+ <i class="fas fa-star-half-alt"></i>
294
+ <i class="far fa-star"></i>
295
+ </div>
296
+ <button class="bg-indigo-600 text-white px-3 py-1 rounded-full hover:bg-indigo-700 transition duration-300">
297
+ <i class="fas fa-plus"></i>
298
+ </button>
299
+ </div>
300
+ </div>
301
+ </div>
302
+ </div>
303
+ </div>
304
+ </section>
305
+
306
+ <!-- Banner -->
307
+ <section class="py-16 bg-indigo-600 text-white">
308
+ <div class="container mx-auto px-4 text-center">
309
+ <h2 class="text-3xl font-bold mb-4 fade-in">Livraison Gratuite</h2>
310
+ <p class="text-xl mb-6 max-w-2xl mx-auto fade-in delay-1">Pour toute commande supérieure à €50. Profitez-en dès maintenant !</p>
311
+ <a href="#" class="bg-white text-indigo-600 px-6 py-3 rounded-full font-medium hover:bg-gray-100 transition duration-300 inline-block fade-in delay-2">Acheter Maintenant</a>
312
+ </div>
313
+ </section>
314
+
315
+ <!-- Testimonials -->
316
+ <section class="py-16 bg-white">
317
+ <div class="container mx-auto px-4">
318
+ <h2 class="text-3xl font-bold text-center mb-12 fade-in">Ce Que Disent Nos Clients</h2>
319
+
320
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
321
+ <!-- Testimonial 1 -->
322
+ <div class="bg-gray-50 p-6 rounded-xl fade-in">
323
+ <div class="flex items-center mb-4">
324
+ <div class="flex text-yellow-400 mr-2">
325
+ <i class="fas fa-star"></i>
326
+ <i class="fas fa-star"></i>
327
+ <i class="fas fa-star"></i>
328
+ <i class="fas fa-star"></i>
329
+ <i class="fas fa-star"></i>
330
+ </div>
331
+ <span class="text-gray-600">Il y a 2 semaines</span>
332
+ </div>
333
+ <p class="text-gray-700 mb-4">"La montre que j'ai achetée est tout simplement magnifique. La qualité est exceptionnelle et elle attire des compliments chaque fois que je la porte."</p>
334
+ <div class="flex items-center">
335
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client" class="w-10 h-10 rounded-full mr-3">
336
+ <div>
337
+ <h4 class="font-bold">Pierre L.</h4>
338
+ <p class="text-gray-600 text-sm">Paris, France</p>
339
+ </div>
340
+ </div>
341
+ </div>
342
+
343
+ <!-- Testimonial 2 -->
344
+ <div class="bg-gray-50 p-6 rounded-xl fade-in delay-1">
345
+ <div class="flex items-center mb-4">
346
+ <div class="flex text-yellow-400 mr-2">
347
+ <i class="fas fa-star"></i>
348
+ <i class="fas fa-star"></i>
349
+ <i class="fas fa-star"></i>
350
+ <i class="fas fa-star"></i>
351
+ <i class="fas fa-star"></i>
352
+ </div>
353
+ <span class="text-gray-600">Il y a 1 mois</span>
354
+ </div>
355
+ <p class="text-gray-700 mb-4">"J'adore mon écharpe en soie ! Les couleurs sont encore plus belles en vrai que sur les photos. Livraison rapide et emballage soigné."</p>
356
+ <div class="flex items-center">
357
+ <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client" class="w-10 h-10 rounded-full mr-3">
358
+ <div>
359
+ <h4 class="font-bold">Sophie M.</h4>
360
+ <p class="text-gray-600 text-sm">Lyon, France</p>
361
+ </div>
362
+ </div>
363
+ </div>
364
+
365
+ <!-- Testimonial 3 -->
366
+ <div class="bg-gray-50 p-6 rounded-xl fade-in delay-2">
367
+ <div class="flex items-center mb-4">
368
+ <div class="flex text-yellow-400 mr-2">
369
+ <i class="fas fa-star"></i>
370
+ <i class="fas fa-star"></i>
371
+ <i class="fas fa-star"></i>
372
+ <i class="fas fa-star"></i>
373
+ <i class="fas fa-star-half-alt"></i>
374
+ </div>
375
+ <span class="text-gray-600">Il y a 3 jours</span>
376
+ </div>
377
+ <p class="text-gray-700 mb-4">"Service client exceptionnel ! J'ai eu un problème avec ma commande qui a été résolu en moins de 24h. Je recommande vivement ce site."</p>
378
+ <div class="flex items-center">
379
+ <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Client" class="w-10 h-10 rounded-full mr-3">
380
+ <div>
381
+ <h4 class="font-bold">Thomas D.</h4>
382
+ <p class="text-gray-600 text-sm">Marseille, France</p>
383
+ </div>
384
+ </div>
385
+ </div>
386
+ </div>
387
+ </div>
388
+ </section>
389
+
390
+ <!-- Newsletter -->
391
+ <section class="py-16 bg-gray-100">
392
+ <div class="container mx-auto px-4 text-center max-w-4xl">
393
+ <h2 class="text-3xl font-bold mb-4 fade-in">Abonnez-vous à Notre Newsletter</h2>
394
+ <p class="text-xl mb-8 fade-in delay-1">Recevez 10% de réduction sur votre première commande et soyez informé de nos nouveautés et promotions.</p>
395
+
396
+ <form class="flex flex-col sm:flex-row gap-4 justify-center fade-in delay-2">
397
+ <input type="email" placeholder="Votre adresse email" class="px-4 py-3 rounded-full border-2 border-gray-300 focus:border-indigo-600 focus:outline-none flex-grow max-w-md">
398
+ <button type="submit" class="bg-indigo-600 text-white px-6 py-3 rounded-full font-medium hover:bg-indigo-700 transition duration-300">S'abonner</button>
399
+ </form>
400
+ </div>
401
+ </section>
402
+
403
+ <!-- Footer -->
404
+ <footer class="bg-gray-900 text-white pt-16 pb-8">
405
+ <div class="container mx-auto px-4">
406
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
407
+ <!-- Column 1 -->
408
+ <div>
409
+ <h3 class="text-xl font-bold mb-4 flex items-center">
410
+ <i class="fas fa-crown mr-2"></i>
411
+ Elégance
412
+ </h3>
413
+ <p class="mb-4">Votre destination pour des accessoires de mode haut de gamme pour homme et femme.</p>
414
+ <div class="flex space-x-4">
415
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
416
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
417
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
418
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-pinterest"></i></a>
419
+ </div>
420
+ </div>
421
+
422
+ <!-- Column 2 -->
423
+ <div>
424
+ <h3 class="text-lg font-bold mb-4">Boutique</h3>
425
+ <ul class="space-y-2">
426
+ <li><a href="#" class="text-gray-400 hover:text-white">Homme</a></li>
427
+ <li><a href="#" class="text-gray-400 hover:text-white">Femme</a></li>
428
+ <li><a href="#" class="text-gray-400 hover:text-white">Nouveautés</a></li>
429
+ <li><a href="#" class="text-gray-400 hover:text-white">Promotions</a></li>
430
+ <li><a href="#" class="text-gray-400 hover:text-white">Collections</a></li>
431
+ </ul>
432
+ </div>
433
+
434
+ <!-- Column 3 -->
435
+ <div>
436
+ <h3 class="text-lg font-bold mb-4">Informations</h3>
437
+ <ul class="space-y-2">
438
+ <li><a href="#" class="text-gray-400 hover:text-white">À propos</a></li>
439
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
440
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
441
+ <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
442
+ <li><a href="#" class="text-gray-400 hover:text-white">Mentions légales</a></li>
443
+ </ul>
444
+ </div>
445
+
446
+ <!-- Column 4 -->
447
+ <div>
448
+ <h3 class="text-lg font-bold mb-4">Contact</h3>
449
+ <ul class="space-y-2">
450
+ <li class="flex items-center">
451
+ <i class="fas fa-map-marker-alt mr-2 text-gray-400"></i>
452
+ <span>123 Rue de la Mode, Paris</span>
453
+ </li>
454
+ <li class="flex items-center">
455
+ <i class="fas fa-phone-alt mr-2 text-gray-400"></i>
456
+ <span>+33 1 23 45 67 89</span>
457
+ </li>
458
+ <li class="flex items-center">
459
+ <i class="fas fa-envelope mr-2 text-gray-400"></i>
460
+ <span>contact@elegance.com</span>
461
+ </li>
462
+ </ul>
463
+ </div>
464
+ </div>
465
+
466
+ <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
467
+ <p class="text-gray-400 mb-4 md:mb-0">© 2023 Elégance. Tous droits réservés.</p>
468
+ <div class="flex space-x-6">
469
+ <img src="https://via.placeholder.com/40x25" alt="Visa" class="h-6">
470
+ <img src="https://via.placeholder.com/40x25" alt="Mastercard" class="h-6">
471
+ <img src="https://via.placeholder.com/40x25" alt="PayPal" class="h-6">
472
+ <img src="https://via.placeholder.com/40x25" alt="Apple Pay" class="h-6">
473
+ </div>
474
+ </div>
475
+ </div>
476
+ </footer>
477
+
478
+ <script>
479
+ // Mobile menu toggle
480
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
481
+ const menu = document.getElementById('mobile-menu');
482
+ menu.classList.toggle('hidden');
483
+ });
484
+
485
+ // Animation on scroll
486
+ document.addEventListener('DOMContentLoaded', function() {
487
+ const fadeElements = document.querySelectorAll('.fade-in');
488
+
489
+ const fadeInOnScroll = function() {
490
+ fadeElements.forEach(element => {
491
+ const elementTop = element.getBoundingClientRect().top;
492
+ const windowHeight = window.innerHeight;
493
+
494
+ if (elementTop < windowHeight - 100) {
495
+ element.style.opacity = '1';
496
+ element.style.transform = 'translateY(0)';
497
+ }
498
+ });
499
+ };
500
+
501
+ // Initial check
502
+ fadeInOnScroll();
503
+
504
+ // Check on scroll
505
+ window.addEventListener('scroll', fadeInOnScroll);
506
+ });
507
+ </script>
508
+ <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=Hmayda/elegence" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
509
+ </html>