iShares commited on
Commit
b73b8f9
·
verified ·
1 Parent(s): f953093

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +508 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Pc
3
- emoji:
4
  colorFrom: red
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: pc
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,508 @@
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>PC Configurator - Créez votre PC de rêve</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
+ background-color: #f5f7fa;
15
+ }
16
+
17
+ .gradient-bg {
18
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
19
+ }
20
+
21
+ .component-card:hover {
22
+ transform: translateY(-5px);
23
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
24
+ }
25
+
26
+ .component-card {
27
+ transition: all 0.3s ease;
28
+ }
29
+
30
+ .price-tag {
31
+ background: linear-gradient(90deg, #48bb78 0%, #38a169 100%);
32
+ }
33
+
34
+ .tab-active {
35
+ border-bottom: 3px solid #667eea;
36
+ color: #667eea;
37
+ font-weight: 600;
38
+ }
39
+
40
+ /* Animation pour le bouton */
41
+ @keyframes pulse {
42
+ 0% { transform: scale(1); }
43
+ 50% { transform: scale(1.05); }
44
+ 100% { transform: scale(1); }
45
+ }
46
+
47
+ .animate-pulse {
48
+ animation: pulse 2s infinite;
49
+ }
50
+ </style>
51
+ </head>
52
+ <body class="min-h-screen">
53
+ <!-- Header -->
54
+ <header class="gradient-bg text-white shadow-lg">
55
+ <div class="container mx-auto px-4 py-6">
56
+ <div class="flex justify-between items-center">
57
+ <div class="flex items-center space-x-2">
58
+ <i class="fas fa-gamepad text-2xl"></i>
59
+ <h1 class="text-xl font-bold">PC Configurator</h1>
60
+ </div>
61
+ <div class="flex space-x-4">
62
+ <button class="bg-white text-indigo-600 px-3 py-1 rounded-full text-sm font-medium">
63
+ <i class="fas fa-user mr-1"></i> Mon compte
64
+ </button>
65
+ <button class="bg-white text-indigo-600 px-3 py-1 rounded-full text-sm font-medium">
66
+ <i class="fas fa-shopping-cart mr-1"></i> Panier
67
+ </button>
68
+ </div>
69
+ </div>
70
+
71
+ <div class="mt-8 text-center">
72
+ <h2 class="text-3xl font-bold mb-2">Créez votre PC gaming ultime</h2>
73
+ <p class="text-indigo-100 mb-6">Sélectionnez chaque composant et visualisez votre configuration en temps réel</p>
74
+ <button class="bg-yellow-400 text-gray-800 px-6 py-3 rounded-full font-bold shadow-lg hover:bg-yellow-300 transition duration-300 animate-pulse">
75
+ <i class="fas fa-bolt mr-2"></i> Commencer maintenant
76
+ </button>
77
+ </div>
78
+ </div>
79
+ </header>
80
+
81
+ <!-- Main Content -->
82
+ <main class="container mx-auto px-4 py-8">
83
+ <!-- Configuration Summary -->
84
+ <div class="bg-white rounded-xl shadow-md p-6 mb-8">
85
+ <h3 class="text-xl font-bold mb-4">Votre configuration</h3>
86
+
87
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4 mb-6">
88
+ <div class="bg-gray-50 p-4 rounded-lg">
89
+ <div class="text-gray-500 text-sm">Budget total</div>
90
+ <div class="text-2xl font-bold text-indigo-600">€1,549.99</div>
91
+ </div>
92
+ <div class="bg-gray-50 p-4 rounded-lg">
93
+ <div class="text-gray-500 text-sm">Performance</div>
94
+ <div class="flex items-center">
95
+ <div class="w-full bg-gray-200 rounded-full h-2.5 mr-2">
96
+ <div class="bg-green-500 h-2.5 rounded-full" style="width: 85%"></div>
97
+ </div>
98
+ <span class="text-sm font-medium">85%</span>
99
+ </div>
100
+ </div>
101
+ <div class="bg-gray-50 p-4 rounded-lg">
102
+ <div class="text-gray-500 text-sm">Compatibilité</div>
103
+ <div class="flex items-center text-green-500">
104
+ <i class="fas fa-check-circle mr-1"></i>
105
+ <span class="text-sm font-medium">OK</span>
106
+ </div>
107
+ </div>
108
+ <div class="bg-gray-50 p-4 rounded-lg">
109
+ <div class="text-gray-500 text-sm">Type</div>
110
+ <div class="text-sm font-medium">Gaming 1440p</div>
111
+ </div>
112
+ </div>
113
+
114
+ <div class="flex overflow-x-auto pb-4 space-x-4">
115
+ <div class="flex-shrink-0 w-48 bg-gray-100 rounded-lg p-3 flex flex-col items-center">
116
+ <div class="bg-white p-2 rounded-full mb-2">
117
+ <i class="fas fa-microchip text-3xl text-indigo-500"></i>
118
+ </div>
119
+ <div class="text-center">
120
+ <div class="font-medium">AMD Ryzen 7 5800X</div>
121
+ <div class="text-sm text-gray-500">€329.99</div>
122
+ </div>
123
+ </div>
124
+ <div class="flex-shrink-0 w-48 bg-gray-100 rounded-lg p-3 flex flex-col items-center">
125
+ <div class="bg-white p-2 rounded-full mb-2">
126
+ <i class="fas fa-fan text-3xl text-indigo-500"></i>
127
+ </div>
128
+ <div class="text-center">
129
+ <div class="font-medium">NZXT Kraken X63</div>
130
+ <div class="text-sm text-gray-500">€149.99</div>
131
+ </div>
132
+ </div>
133
+ <div class="flex-shrink-0 w-48 bg-gray-100 rounded-lg p-3 flex flex-col items-center">
134
+ <div class="bg-white p-2 rounded-full mb-2">
135
+ <i class="fas fa-memory text-3xl text-indigo-500"></i>
136
+ </div>
137
+ <div class="text-center">
138
+ <div class="font-medium">Corsair Vengeance 32GB</div>
139
+ <div class="text-sm text-gray-500">€129.99</div>
140
+ </div>
141
+ </div>
142
+ <div class="flex-shrink-0 w-48 bg-gray-100 rounded-lg p-3 flex flex-col items-center">
143
+ <div class="bg-white p-2 rounded-full mb-2">
144
+ <i class="fas fa-hdd text-3xl text-indigo-500"></i>
145
+ </div>
146
+ <div class="text-center">
147
+ <div class="font-medium">Samsung 980 Pro 1TB</div>
148
+ <div class="text-sm text-gray-500">€99.99</div>
149
+ </div>
150
+ </div>
151
+ <div class="flex-shrink-0 w-48 bg-gray-100 rounded-lg p-3 flex flex-col items-center">
152
+ <div class="bg-white p-2 rounded-full mb-2">
153
+ <i class="fas fa-desktop text-3xl text-indigo-500"></i>
154
+ </div>
155
+ <div class="text-center">
156
+ <div class="font-medium">NVIDIA RTX 4070 Ti</div>
157
+ <div class="text-sm text-gray-500">€849.99</div>
158
+ </div>
159
+ </div>
160
+ <div class="flex-shrink-0 w-48 bg-gray-100 rounded-lg p-3 flex flex-col items-center">
161
+ <div class="bg-white p-2 rounded-full mb-2">
162
+ <i class="fas fa-plus-circle text-3xl text-gray-400"></i>
163
+ </div>
164
+ <div class="text-center">
165
+ <div class="font-medium text-gray-500">Ajouter un composant</div>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Component Selection -->
172
+ <div class="bg-white rounded-xl shadow-md p-6">
173
+ <div class="flex border-b mb-6">
174
+ <button class="px-4 py-2 font-medium tab-active">Processeur</button>
175
+ <button class="px-4 py-2 font-medium text-gray-500">Carte graphique</button>
176
+ <button class="px-4 py-2 font-medium text-gray-500">RAM</button>
177
+ <button class="px-4 py-2 font-medium text-gray-500">Stockage</button>
178
+ <button class="px-4 py-2 font-medium text-gray-500">Boîtier</button>
179
+ </div>
180
+
181
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
182
+ <!-- CPU Card 1 -->
183
+ <div class="component-card bg-white border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md">
184
+ <div class="p-4">
185
+ <div class="flex justify-between items-start">
186
+ <div>
187
+ <h4 class="font-bold text-lg">AMD Ryzen 7 5800X</h4>
188
+ <div class="flex items-center mt-1">
189
+ <div class="flex text-yellow-400">
190
+ <i class="fas fa-star"></i>
191
+ <i class="fas fa-star"></i>
192
+ <i class="fas fa-star"></i>
193
+ <i class="fas fa-star"></i>
194
+ <i class="fas fa-star-half-alt"></i>
195
+ </div>
196
+ <span class="text-gray-500 text-sm ml-1">(142)</span>
197
+ </div>
198
+ </div>
199
+ <div class="price-tag text-white text-sm font-bold px-2 py-1 rounded">
200
+ €329.99
201
+ </div>
202
+ </div>
203
+ <div class="mt-3">
204
+ <div class="flex items-center text-sm text-gray-500 mb-1">
205
+ <i class="fas fa-microchip mr-2"></i>
206
+ <span>8 cœurs / 16 threads</span>
207
+ </div>
208
+ <div class="flex items-center text-sm text-gray-500 mb-1">
209
+ <i class="fas fa-tachometer-alt mr-2"></i>
210
+ <span>3.8GHz base / 4.7GHz boost</span>
211
+ </div>
212
+ <div class="flex items-center text-sm text-gray-500">
213
+ <i class="fas fa-plug mr-2"></i>
214
+ <span>105W TDP</span>
215
+ </div>
216
+ </div>
217
+ </div>
218
+ <div class="bg-gray-50 px-4 py-3 flex justify-between items-center">
219
+ <button class="text-indigo-600 font-medium text-sm flex items-center">
220
+ <i class="fas fa-info-circle mr-1"></i> Détails
221
+ </button>
222
+ <button class="bg-indigo-600 text-white px-3 py-1 rounded text-sm font-medium hover:bg-indigo-700 transition">
223
+ <i class="fas fa-plus mr-1"></i> Ajouter
224
+ </button>
225
+ </div>
226
+ </div>
227
+
228
+ <!-- CPU Card 2 -->
229
+ <div class="component-card bg-white border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md">
230
+ <div class="p-4">
231
+ <div class="flex justify-between items-start">
232
+ <div>
233
+ <h4 class="font-bold text-lg">Intel Core i7-13700K</h4>
234
+ <div class="flex items-center mt-1">
235
+ <div class="flex text-yellow-400">
236
+ <i class="fas fa-star"></i>
237
+ <i class="fas fa-star"></i>
238
+ <i class="fas fa-star"></i>
239
+ <i class="fas fa-star"></i>
240
+ <i class="far fa-star"></i>
241
+ </div>
242
+ <span class="text-gray-500 text-sm ml-1">(98)</span>
243
+ </div>
244
+ </div>
245
+ <div class="price-tag text-white text-sm font-bold px-2 py-1 rounded">
246
+ €419.99
247
+ </div>
248
+ </div>
249
+ <div class="mt-3">
250
+ <div class="flex items-center text-sm text-gray-500 mb-1">
251
+ <i class="fas fa-microchip mr-2"></i>
252
+ <span>16 cœurs (8P+8E) / 24 threads</span>
253
+ </div>
254
+ <div class="flex items-center text-sm text-gray-500 mb-1">
255
+ <i class="fas fa-tachometer-alt mr-2"></i>
256
+ <span>3.4GHz base / 5.4GHz boost</span>
257
+ </div>
258
+ <div class="flex items-center text-sm text-gray-500">
259
+ <i class="fas fa-plug mr-2"></i>
260
+ <span>125W TDP</span>
261
+ </div>
262
+ </div>
263
+ </div>
264
+ <div class="bg-gray-50 px-4 py-3 flex justify-between items-center">
265
+ <button class="text-indigo-600 font-medium text-sm flex items-center">
266
+ <i class="fas fa-info-circle mr-1"></i> Détails
267
+ </button>
268
+ <button class="bg-indigo-600 text-white px-3 py-1 rounded text-sm font-medium hover:bg-indigo-700 transition">
269
+ <i class="fas fa-plus mr-1"></i> Ajouter
270
+ </button>
271
+ </div>
272
+ </div>
273
+
274
+ <!-- CPU Card 3 -->
275
+ <div class="component-card bg-white border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md">
276
+ <div class="p-4">
277
+ <div class="flex justify-between items-start">
278
+ <div>
279
+ <h4 class="font-bold text-lg">AMD Ryzen 9 7950X</h4>
280
+ <div class="flex items-center mt-1">
281
+ <div class="flex text-yellow-400">
282
+ <i class="fas fa-star"></i>
283
+ <i class="fas fa-star"></i>
284
+ <i class="fas fa-star"></i>
285
+ <i class="fas fa-star"></i>
286
+ <i class="fas fa-star"></i>
287
+ </div>
288
+ <span class="text-gray-500 text-sm ml-1">(76)</span>
289
+ </div>
290
+ </div>
291
+ <div class="price-tag text-white text-sm font-bold px-2 py-1 rounded">
292
+ €699.99
293
+ </div>
294
+ </div>
295
+ <div class="mt-3">
296
+ <div class="flex items-center text-sm text-gray-500 mb-1">
297
+ <i class="fas fa-microchip mr-2"></i>
298
+ <span>16 cœurs / 32 threads</span>
299
+ </div>
300
+ <div class="flex items-center text-sm text-gray-500 mb-1">
301
+ <i class="fas fa-tachometer-alt mr-2"></i>
302
+ <span>4.5GHz base / 5.7GHz boost</span>
303
+ </div>
304
+ <div class="flex items-center text-sm text-gray-500">
305
+ <i class="fas fa-plug mr-2"></i>
306
+ <span>170W TDP</span>
307
+ </div>
308
+ </div>
309
+ </div>
310
+ <div class="bg-gray-50 px-4 py-3 flex justify-between items-center">
311
+ <button class="text-indigo-600 font-medium text-sm flex items-center">
312
+ <i class="fas fa-info-circle mr-1"></i> Détails
313
+ </button>
314
+ <button class="bg-indigo-600 text-white px-3 py-1 rounded text-sm font-medium hover:bg-indigo-700 transition">
315
+ <i class="fas fa-plus mr-1"></i> Ajouter
316
+ </button>
317
+ </div>
318
+ </div>
319
+ </div>
320
+
321
+ <div class="mt-8 flex justify-center">
322
+ <button class="bg-white border border-gray-300 text-gray-700 px-6 py-2 rounded-full font-medium hover:bg-gray-50 transition">
323
+ <i class="fas fa-chevron-down mr-2"></i> Voir plus de processeurs
324
+ </button>
325
+ </div>
326
+ </div>
327
+
328
+ <!-- Build Preview -->
329
+ <div class="mt-8 bg-white rounded-xl shadow-md p-6">
330
+ <h3 class="text-xl font-bold mb-4">Aperçu de votre build</h3>
331
+
332
+ <div class="flex flex-col md:flex-row gap-6">
333
+ <div class="md:w-1/2">
334
+ <div class="bg-gray-100 rounded-lg p-6 flex justify-center items-center h-64">
335
+ <img src="https://via.placeholder.com/300x200?text=3D+PC+Preview" alt="PC Preview" class="max-h-full">
336
+ </div>
337
+
338
+ <div class="mt-4 grid grid-cols-2 gap-4">
339
+ <div class="bg-gray-50 p-3 rounded-lg">
340
+ <div class="text-gray-500 text-sm">Température estimée</div>
341
+ <div class="text-xl font-bold">62°C</div>
342
+ </div>
343
+ <div class="bg-gray-50 p-3 rounded-lg">
344
+ <div class="text-gray-500 text-sm">Consommation</div>
345
+ <div class="text-xl font-bold">450W</div>
346
+ </div>
347
+ <div class="bg-gray-50 p-3 rounded-lg">
348
+ <div class="text-gray-500 text-sm">FPS moyen (1440p)</div>
349
+ <div class="text-xl font-bold">124</div>
350
+ </div>
351
+ <div class="bg-gray-50 p-3 rounded-lg">
352
+ <div class="text-gray-500 text-sm">Niveau sonore</div>
353
+ <div class="text-xl font-bold">32dB</div>
354
+ </div>
355
+ </div>
356
+ </div>
357
+
358
+ <div class="md:w-1/2">
359
+ <div class="bg-gray-50 rounded-lg p-4">
360
+ <h4 class="font-bold mb-3">Détails de la configuration</h4>
361
+
362
+ <div class="space-y-3">
363
+ <div class="flex justify-between border-b pb-2">
364
+ <span class="text-gray-600">Processeur</span>
365
+ <span class="font-medium">AMD Ryzen 7 5800X</span>
366
+ </div>
367
+ <div class="flex justify-between border-b pb-2">
368
+ <span class="text-gray-600">Refroidissement</span>
369
+ <span class="font-medium">NZXT Kraken X63</span>
370
+ </div>
371
+ <div class="flex justify-between border-b pb-2">
372
+ <span class="text-gray-600">Carte mère</span>
373
+ <span class="font-medium">MSI B550 TOMAHAWK</span>
374
+ </div>
375
+ <div class="flex justify-between border-b pb-2">
376
+ <span class="text-gray-600">Mémoire</span>
377
+ <span class="font-medium">Corsair Vengeance 32GB</span>
378
+ </div>
379
+ <div class="flex justify-between border-b pb-2">
380
+ <span class="text-gray-600">Stockage</span>
381
+ <span class="font-medium">Samsung 980 Pro 1TB</span>
382
+ </div>
383
+ <div class="flex justify-between border-b pb-2">
384
+ <span class="text-gray-600">Carte graphique</span>
385
+ <span class="font-medium">NVIDIA RTX 4070 Ti</span>
386
+ </div>
387
+ <div class="flex justify-between border-b pb-2">
388
+ <span class="text-gray-600">Boîtier</span>
389
+ <span class="font-medium">Lian Li PC-O11 Dynamic</span>
390
+ </div>
391
+ <div class="flex justify-between border-b pb-2">
392
+ <span class="text-gray-600">Alimentation</span>
393
+ <span class="font-medium">Corsair RM850x</span>
394
+ </div>
395
+ </div>
396
+
397
+ <div class="mt-6 pt-4 border-t">
398
+ <div class="flex justify-between text-lg font-bold">
399
+ <span>Total</span>
400
+ <span class="text-indigo-600">€1,549.99</span>
401
+ </div>
402
+
403
+ <div class="mt-4 flex flex-col space-y-3">
404
+ <button class="bg-indigo-600 text-white py-3 rounded-lg font-bold hover:bg-indigo-700 transition flex items-center justify-center">
405
+ <i class="fas fa-shopping-cart mr-2"></i> Acheter maintenant
406
+ </button>
407
+ <button class="bg-white border border-indigo-600 text-indigo-600 py-3 rounded-lg font-bold hover:bg-indigo-50 transition flex items-center justify-center">
408
+ <i class="fas fa-save mr-2"></i> Sauvegarder la configuration
409
+ </button>
410
+ <button class="bg-white border border-gray-300 text-gray-700 py-3 rounded-lg font-medium hover:bg-gray-50 transition flex items-center justify-center">
411
+ <i class="fas fa-share-alt mr-2"></i> Partager
412
+ </button>
413
+ </div>
414
+ </div>
415
+ </div>
416
+ </div>
417
+ </div>
418
+ </div>
419
+ </main>
420
+
421
+ <!-- Footer -->
422
+ <footer class="bg-gray-900 text-white mt-12">
423
+ <div class="container mx-auto px-4 py-8">
424
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
425
+ <div>
426
+ <h4 class="text-lg font-bold mb-4">PC Configurator</h4>
427
+ <p class="text-gray-400">Créez le PC gaming de vos rêves avec notre configurateur intuitif et nos conseils d'experts.</p>
428
+ </div>
429
+ <div>
430
+ <h5 class="font-bold mb-4">Navigation</h5>
431
+ <ul class="space-y-2 text-gray-400">
432
+ <li><a href="#" class="hover:text-white transition">Accueil</a></li>
433
+ <li><a href="#" class="hover:text-white transition">Configurateur</a></li>
434
+ <li><a href="#" class="hover:text-white transition">Composants</a></li>
435
+ <li><a href="#" class="hover:text-white transition">Guides</a></li>
436
+ <li><a href="#" class="hover:text-white transition">Contact</a></li>
437
+ </ul>
438
+ </div>
439
+ <div>
440
+ <h5 class="font-bold mb-4">Support</h5>
441
+ <ul class="space-y-2 text-gray-400">
442
+ <li><a href="#" class="hover:text-white transition">FAQ</a></li>
443
+ <li><a href="#" class="hover:text-white transition">Compatibilité</a></li>
444
+ <li><a href="#" class="hover:text-white transition">Livraison</a></li>
445
+ <li><a href="#" class="hover:text-white transition">Retours</a></li>
446
+ <li><a href="#" class="hover:text-white transition">Garanties</a></li>
447
+ </ul>
448
+ </div>
449
+ <div>
450
+ <h5 class="font-bold mb-4">Newsletter</h5>
451
+ <p class="text-gray-400 mb-4">Abonnez-vous pour recevoir les dernières offres et conseils.</p>
452
+ <div class="flex">
453
+ <input type="email" placeholder="Votre email" class="bg-gray-800 text-white px-4 py-2 rounded-l focus:outline-none w-full">
454
+ <button class="bg-indigo-600 px-4 py-2 rounded-r hover:bg-indigo-700 transition">
455
+ <i class="fas fa-paper-plane"></i>
456
+ </button>
457
+ </div>
458
+ <div class="mt-4 flex space-x-4">
459
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
460
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
461
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
462
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-discord"></i></a>
463
+ </div>
464
+ </div>
465
+ </div>
466
+ <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
467
+ <p>© 2023 PC Configurator. Tous droits réservés.</p>
468
+ </div>
469
+ </div>
470
+ </footer>
471
+
472
+ <script>
473
+ // Simple script pour la navigation des onglets
474
+ document.addEventListener('DOMContentLoaded', function() {
475
+ const tabs = document.querySelectorAll('.flex.border-b button');
476
+
477
+ tabs.forEach(tab => {
478
+ tab.addEventListener('click', function() {
479
+ // Retirer la classe active de tous les onglets
480
+ tabs.forEach(t => {
481
+ t.classList.remove('tab-active');
482
+ t.classList.add('text-gray-500');
483
+ });
484
+
485
+ // Ajouter la classe active à l'onglet cliqué
486
+ this.classList.add('tab-active');
487
+ this.classList.remove('text-gray-500');
488
+ });
489
+ });
490
+
491
+ // Animation pour les cartes de composants
492
+ const componentCards = document.querySelectorAll('.component-card');
493
+
494
+ componentCards.forEach(card => {
495
+ card.addEventListener('mouseenter', function() {
496
+ this.style.transform = 'translateY(-5px)';
497
+ this.style.boxShadow = '0 10px 20px rgba(0, 0, 0, 0.1)';
498
+ });
499
+
500
+ card.addEventListener('mouseleave', function() {
501
+ this.style.transform = '';
502
+ this.style.boxShadow = '';
503
+ });
504
+ });
505
+ });
506
+ </script>
507
+ <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=iShares/pc" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
508
+ </html>