docto41 commited on
Commit
29aaf4e
·
verified ·
1 Parent(s): 0ccffe9

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +446 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Arm E Ia De Correction Web
3
- emoji: 😻
4
- colorFrom: gray
5
- colorTo: gray
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: arm-e-ia-de-correction-web
3
+ emoji: 🐳
4
+ colorFrom: green
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,446 @@
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>Armée IA de Correction Web</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
12
+ }
13
+ .soldier-card {
14
+ transition: all 0.3s ease;
15
+ transform-style: preserve-3d;
16
+ }
17
+ .soldier-card:hover {
18
+ transform: translateY(-5px) scale(1.02);
19
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
20
+ }
21
+ .tab-content {
22
+ display: none;
23
+ }
24
+ .tab-content.active {
25
+ display: block;
26
+ animation: fadeIn 0.5s ease;
27
+ }
28
+ @keyframes fadeIn {
29
+ from { opacity: 0; transform: translateY(10px); }
30
+ to { opacity: 1; transform: translateY(0); }
31
+ }
32
+ .code-input {
33
+ font-family: 'Courier New', Courier, monospace;
34
+ }
35
+ .progress-bar {
36
+ transition: width 0.5s ease;
37
+ }
38
+ .pulse {
39
+ animation: pulse 2s infinite;
40
+ }
41
+ @keyframes pulse {
42
+ 0% { transform: scale(1); }
43
+ 50% { transform: scale(1.05); }
44
+ 100% { transform: scale(1); }
45
+ }
46
+ </style>
47
+ </head>
48
+ <body class="bg-gray-100">
49
+ <!-- Header -->
50
+ <header class="gradient-bg text-white shadow-lg">
51
+ <div class="container mx-auto px-4 py-8">
52
+ <div class="flex flex-col md:flex-row justify-between items-center">
53
+ <div class="flex items-center mb-6 md:mb-0">
54
+ <i class="fas fa-robot text-4xl mr-4"></i>
55
+ <div>
56
+ <h1 class="text-3xl font-bold">Armée IA de Correction Web</h1>
57
+ <p class="text-blue-100">100,000 soldats IA prêts à corriger vos sites</p>
58
+ </div>
59
+ </div>
60
+ <div class="bg-white/10 backdrop-blur-sm rounded-lg p-4">
61
+ <div class="flex items-center">
62
+ <div class="mr-4">
63
+ <div class="text-sm text-blue-200">Soldats actifs</div>
64
+ <div class="text-2xl font-bold">100,000</div>
65
+ </div>
66
+ <div class="h-12 w-12 rounded-full bg-blue-500 flex items-center justify-center pulse">
67
+ <i class="fas fa-bolt text-white"></i>
68
+ </div>
69
+ </div>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ </header>
74
+
75
+ <!-- Main Content -->
76
+ <main class="container mx-auto px-4 py-8">
77
+ <!-- Stats Section -->
78
+ <section class="mb-12 grid grid-cols-1 md:grid-cols-4 gap-6">
79
+ <div class="bg-white rounded-lg shadow p-6 flex items-center">
80
+ <div class="bg-green-100 p-3 rounded-full mr-4">
81
+ <i class="fas fa-check-circle text-green-600 text-xl"></i>
82
+ </div>
83
+ <div>
84
+ <div class="text-gray-500 text-sm">Sites corrigés</div>
85
+ <div class="text-2xl font-bold">24,856</div>
86
+ </div>
87
+ </div>
88
+ <div class="bg-white rounded-lg shadow p-6 flex items-center">
89
+ <div class="bg-blue-100 p-3 rounded-full mr-4">
90
+ <i class="fas fa-clock text-blue-600 text-xl"></i>
91
+ </div>
92
+ <div>
93
+ <div class="text-gray-500 text-sm">En cours</div>
94
+ <div class="text-2xl font-bold">1,243</div>
95
+ </div>
96
+ </div>
97
+ <div class="bg-white rounded-lg shadow p-6 flex items-center">
98
+ <div class="bg-purple-100 p-3 rounded-full mr-4">
99
+ <i class="fas fa-bug text-purple-600 text-xl"></i>
100
+ </div>
101
+ <div>
102
+ <div class="text-gray-500 text-sm">Erreurs trouvées</div>
103
+ <div class="text-2xl font-bold">892,456</div>
104
+ </div>
105
+ </div>
106
+ <div class="bg-white rounded-lg shadow p-6 flex items-center">
107
+ <div class="bg-yellow-100 p-3 rounded-full mr-4">
108
+ <i class="fas fa-tachometer-alt text-yellow-600 text-xl"></i>
109
+ </div>
110
+ <div>
111
+ <div class="text-gray-500 text-sm">Performance boost</div>
112
+ <div class="text-2xl font-bold">+87%</div>
113
+ </div>
114
+ </div>
115
+ </section>
116
+
117
+ <!-- Submission Section -->
118
+ <section class="mb-12 bg-white rounded-lg shadow-lg overflow-hidden">
119
+ <div class="border-b border-gray-200">
120
+ <div class="flex flex-wrap -mb-px">
121
+ <button class="tab-btn active px-6 py-4 font-medium text-sm border-b-2 border-blue-500 text-blue-600" data-tab="url">
122
+ <i class="fas fa-link mr-2"></i> Par URL
123
+ </button>
124
+ <button class="tab-btn px-6 py-4 font-medium text-sm text-gray-500 hover:text-blue-600" data-tab="zip">
125
+ <i class="fas fa-file-archive mr-2"></i> Fichier ZIP
126
+ </button>
127
+ <button class="tab-btn px-6 py-4 font-medium text-sm text-gray-500 hover:text-blue-600" data-tab="code">
128
+ <i class="fas fa-code mr-2"></i> Code Direct
129
+ </button>
130
+ <button class="tab-btn px-6 py-4 font-medium text-sm text-gray-500 hover:text-blue-600" data-tab="git">
131
+ <i class="fab fa-github mr-2"></i> GitHub
132
+ </button>
133
+ </div>
134
+ </div>
135
+
136
+ <div class="p-6">
137
+ <!-- URL Tab -->
138
+ <div id="url" class="tab-content active">
139
+ <div class="mb-6">
140
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Soumettre une URL</h3>
141
+ <p class="text-gray-600">Entrez l'URL du site web que vous souhaitez faire corriger par notre armée IA.</p>
142
+ </div>
143
+ <div class="flex flex-col md:flex-row gap-4">
144
+ <input type="url" placeholder="https://www.example.com" class="flex-1 px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
145
+ <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-200 flex items-center justify-center">
146
+ <i class="fas fa-paper-plane mr-2"></i> Envoyer
147
+ </button>
148
+ </div>
149
+ </div>
150
+
151
+ <!-- ZIP Tab -->
152
+ <div id="zip" class="tab-content">
153
+ <div class="mb-6">
154
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Téléverser un ZIP</h3>
155
+ <p class="text-gray-600">Téléversez une archive ZIP contenant votre site web pour correction.</p>
156
+ </div>
157
+ <div class="border-2 border-dashed border-gray-300 rounded-lg p-8 text-center">
158
+ <div class="flex flex-col items-center justify-center">
159
+ <i class="fas fa-file-archive text-4xl text-gray-400 mb-4"></i>
160
+ <p class="text-gray-600 mb-4">Glissez-déposez votre fichier ZIP ici ou cliquez pour sélectionner</p>
161
+ <input type="file" id="zip-upload" class="hidden" accept=".zip">
162
+ <label for="zip-upload" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-lg font-medium transition duration-200 cursor-pointer">
163
+ <i class="fas fa-upload mr-2"></i> Sélectionner un fichier
164
+ </label>
165
+ </div>
166
+ </div>
167
+ </div>
168
+
169
+ <!-- Code Tab -->
170
+ <div id="code" class="tab-content">
171
+ <div class="mb-6">
172
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Coller votre code</h3>
173
+ <p class="text-gray-600">Collez directement le code HTML, CSS ou JavaScript que vous souhaitez faire corriger.</p>
174
+ </div>
175
+ <div class="mb-4">
176
+ <select class="border border-gray-300 rounded-lg px-4 py-2 focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
177
+ <option>HTML</option>
178
+ <option>CSS</option>
179
+ <option>JavaScript</option>
180
+ <option>PHP</option>
181
+ <option>Autre</option>
182
+ </select>
183
+ </div>
184
+ <textarea class="w-full h-64 code-input border border-gray-300 rounded-lg p-4 focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="Collez votre code ici..."></textarea>
185
+ <button class="mt-4 bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-200">
186
+ <i class="fas fa-magic mr-2"></i> Corriger le code
187
+ </button>
188
+ </div>
189
+
190
+ <!-- GitHub Tab -->
191
+ <div id="git" class="tab-content">
192
+ <div class="mb-6">
193
+ <h3 class="text-lg font-medium text-gray-900 mb-2">Connecter GitHub</h3>
194
+ <p class="text-gray-600">Connectez-vous à votre compte GitHub pour corriger un dépôt directement.</p>
195
+ </div>
196
+ <div class="flex flex-col md:flex-row gap-4">
197
+ <input type="text" placeholder="Nom du dépôt (user/repo)" class="flex-1 px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
198
+ <button class="bg-gray-800 hover:bg-gray-900 text-white px-6 py-3 rounded-lg font-medium transition duration-200 flex items-center justify-center">
199
+ <i class="fab fa-github mr-2"></i> Connecter GitHub
200
+ </button>
201
+ </div>
202
+ </div>
203
+ </div>
204
+ </section>
205
+
206
+ <!-- Features Section -->
207
+ <section class="mb-12">
208
+ <h2 class="text-2xl font-bold text-gray-800 mb-6">Ce que notre armée IA peut faire pour vous</h2>
209
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
210
+ <div class="bg-white rounded-lg shadow p-6 soldier-card">
211
+ <div class="bg-blue-100 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
212
+ <i class="fas fa-search text-blue-600"></i>
213
+ </div>
214
+ <h3 class="text-lg font-semibold mb-2">Détection d'erreurs</h3>
215
+ <p class="text-gray-600">Nos soldats IA scannent votre site pour trouver toutes les erreurs HTML, CSS, JavaScript et problèmes d'accessibilité.</p>
216
+ </div>
217
+ <div class="bg-white rounded-lg shadow p-6 soldier-card">
218
+ <div class="bg-green-100 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
219
+ <i class="fas fa-wrench text-green-600"></i>
220
+ </div>
221
+ <h3 class="text-lg font-semibold mb-2">Correction automatique</h3>
222
+ <p class="text-gray-600">L'armée corrige automatiquement jusqu'à 95% des problèmes détectés sans intervention humaine.</p>
223
+ </div>
224
+ <div class="bg-white rounded-lg shadow p-6 soldier-card">
225
+ <div class="bg-purple-100 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
226
+ <i class="fas fa-tachometer-alt text-purple-600"></i>
227
+ </div>
228
+ <h3 class="text-lg font-semibold mb-2">Optimisation</h3>
229
+ <p class="text-gray-600">Amélioration des performances, compression des ressources et suggestions pour un site plus rapide.</p>
230
+ </div>
231
+ <div class="bg-white rounded-lg shadow p-6 soldier-card">
232
+ <div class="bg-yellow-100 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
233
+ <i class="fas fa-mobile-alt text-yellow-600"></i>
234
+ </div>
235
+ <h3 class="text-lg font-semibold mb-2">Responsive Design</h3>
236
+ <p class="text-gray-600">Vérification et correction des problèmes d'affichage sur tous les appareils et tailles d'écran.</p>
237
+ </div>
238
+ <div class="bg-white rounded-lg shadow p-6 soldier-card">
239
+ <div class="bg-red-100 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
240
+ <i class="fas fa-shield-alt text-red-600"></i>
241
+ </div>
242
+ <h3 class="text-lg font-semibold mb-2">Sécurité</h3>
243
+ <p class="text-gray-600">Détection des vulnérabilités potentielles et suggestions pour renforcer la sécurité de votre site.</p>
244
+ </div>
245
+ <div class="bg-white rounded-lg shadow p-6 soldier-card">
246
+ <div class="bg-indigo-100 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
247
+ <i class="fas fa-download text-indigo-600"></i>
248
+ </div>
249
+ <h3 class="text-lg font-semibold mb-2">Téléchargement flexible</h3>
250
+ <p class="text-gray-600">Récupérez vos corrections sous forme de fichiers HTML individuels, d'archive ZIP ou même directement dans votre dépôt Git.</p>
251
+ </div>
252
+ </div>
253
+ </section>
254
+
255
+ <!-- Results Example -->
256
+ <section class="mb-12 bg-white rounded-lg shadow-lg overflow-hidden">
257
+ <div class="p-6 border-b border-gray-200">
258
+ <h2 class="text-xl font-semibold text-gray-800">Exemple de résultats</h2>
259
+ </div>
260
+ <div class="p-6">
261
+ <div class="mb-6">
262
+ <div class="flex justify-between items-center mb-2">
263
+ <h3 class="font-medium">Rapport de correction</h3>
264
+ <span class="text-sm text-gray-500">Dernière mise à jour: il y a 2 minutes</span>
265
+ </div>
266
+ <div class="w-full bg-gray-200 rounded-full h-2.5">
267
+ <div class="progress-bar bg-green-600 h-2.5 rounded-full" style="width: 92%"></div>
268
+ </div>
269
+ <div class="flex justify-between text-sm text-gray-600 mt-1">
270
+ <span>92% complété</span>
271
+ <span>24/26 problèmes résolus</span>
272
+ </div>
273
+ </div>
274
+
275
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
276
+ <div>
277
+ <h4 class="font-medium mb-3">Problèmes résolus</h4>
278
+ <ul class="space-y-3">
279
+ <li class="flex items-start">
280
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
281
+ <div>
282
+ <span class="font-medium">Balises HTML mal fermées</span>
283
+ <p class="text-sm text-gray-600">5 corrections</p>
284
+ </div>
285
+ </li>
286
+ <li class="flex items-start">
287
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
288
+ <div>
289
+ <span class="font-medium">CSS non utilisé</span>
290
+ <p class="text-sm text-gray-600">Suppression de 12KB</p>
291
+ </div>
292
+ </li>
293
+ <li class="flex items-start">
294
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
295
+ <div>
296
+ <span class="font-medium">Images non optimisées</span>
297
+ <p class="text-sm text-gray-600">Compression de 8 images</p>
298
+ </div>
299
+ </li>
300
+ <li class="flex items-start">
301
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
302
+ <div>
303
+ <span class="font-medium">Erreurs JavaScript</span>
304
+ <p class="text-sm text-gray-600">3 corrections</p>
305
+ </div>
306
+ </li>
307
+ </ul>
308
+ </div>
309
+ <div>
310
+ <h4 class="font-medium mb-3">Problèmes restants</h4>
311
+ <ul class="space-y-3">
312
+ <li class="flex items-start">
313
+ <i class="fas fa-exclamation-triangle text-yellow-500 mt-1 mr-2"></i>
314
+ <div>
315
+ <span class="font-medium">Contraste des couleurs</span>
316
+ <p class="text-sm text-gray-600">Nécessite vérification humaine</p>
317
+ </div>
318
+ </li>
319
+ <li class="flex items-start">
320
+ <i class="fas fa-exclamation-triangle text-yellow-500 mt-1 mr-2"></i>
321
+ <div>
322
+ <span class="font-medium">Structure sémantique</span>
323
+ <p class="text-sm text-gray-600">Suggestions fournies</p>
324
+ </div>
325
+ </li>
326
+ </ul>
327
+ </div>
328
+ </div>
329
+
330
+ <div class="mt-8 pt-6 border-t border-gray-200">
331
+ <h4 class="font-medium mb-4">Télécharger les corrections</h4>
332
+ <div class="flex flex-wrap gap-3">
333
+ <button class="flex items-center px-4 py-2 border border-gray-300 rounded-lg hover:bg-gray-50">
334
+ <i class="fas fa-file-code text-blue-500 mr-2"></i> HTML seul
335
+ </button>
336
+ <button class="flex items-center px-4 py-2 border border-gray-300 rounded-lg hover:bg-gray-50">
337
+ <i class="fas fa-file-archive text-blue-500 mr-2"></i> ZIP complet
338
+ </button>
339
+ <button class="flex items-center px-4 py-2 border border-gray-300 rounded-lg hover:bg-gray-50">
340
+ <i class="fab fa-github text-blue-500 mr-2"></i> Push sur GitHub
341
+ </button>
342
+ <button class="flex items-center px-4 py-2 border border-gray-300 rounded-lg hover:bg-gray-50">
343
+ <i class="fas fa-file-pdf text-blue-500 mr-2"></i> Rapport PDF
344
+ </button>
345
+ </div>
346
+ </div>
347
+ </div>
348
+ </section>
349
+ </main>
350
+
351
+ <!-- Footer -->
352
+ <footer class="bg-gray-800 text-white py-12">
353
+ <div class="container mx-auto px-4">
354
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
355
+ <div>
356
+ <h3 class="text-lg font-semibold mb-4">Armée IA de Correction Web</h3>
357
+ <p class="text-gray-400">100,000 soldats IA prêts à corriger et optimiser vos sites web automatiquement.</p>
358
+ </div>
359
+ <div>
360
+ <h3 class="text-lg font-semibold mb-4">Méthodes</h3>
361
+ <ul class="space-y-2 text-gray-400">
362
+ <li><a href="#" class="hover:text-white">Par URL</a></li>
363
+ <li><a href="#" class="hover:text-white">Fichier ZIP</a></li>
364
+ <li><a href="#" class="hover:text-white">Code Direct</a></li>
365
+ <li><a href="#" class="hover:text-white">GitHub</a></li>
366
+ </ul>
367
+ </div>
368
+ <div>
369
+ <h3 class="text-lg font-semibold mb-4">Ressources</h3>
370
+ <ul class="space-y-2 text-gray-400">
371
+ <li><a href="#" class="hover:text-white">Documentation</a></li>
372
+ <li><a href="#" class="hover:text-white">API</a></li>
373
+ <li><a href="#" class="hover:text-white">Blog</a></li>
374
+ <li><a href="#" class="hover:text-white">Statut</a></li>
375
+ </ul>
376
+ </div>
377
+ <div>
378
+ <h3 class="text-lg font-semibold mb-4">Contact</h3>
379
+ <ul class="space-y-2 text-gray-400">
380
+ <li><a href="#" class="hover:text-white">Support</a></li>
381
+ <li><a href="#" class="hover:text-white">Twitter</a></li>
382
+ <li><a href="#" class="hover:text-white">LinkedIn</a></li>
383
+ <li><a href="#" class="hover:text-white">Email</a></li>
384
+ </ul>
385
+ </div>
386
+ </div>
387
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
388
+ <p>© 2023 Armée IA de Correction Web. Tous droits réservés.</p>
389
+ </div>
390
+ </div>
391
+ </footer>
392
+
393
+ <script>
394
+ // Tab switching functionality
395
+ document.querySelectorAll('.tab-btn').forEach(btn => {
396
+ btn.addEventListener('click', () => {
397
+ // Remove active class from all buttons and content
398
+ document.querySelectorAll('.tab-btn').forEach(b => b.classList.remove('active', 'text-blue-600', 'border-blue-500'));
399
+ document.querySelectorAll('.tab-btn').forEach(b => b.classList.add('text-gray-500'));
400
+ document.querySelectorAll('.tab-content').forEach(c => c.classList.remove('active'));
401
+
402
+ // Add active class to clicked button and corresponding content
403
+ btn.classList.add('active', 'text-blue-600', 'border-blue-500');
404
+ btn.classList.remove('text-gray-500');
405
+ document.getElementById(btn.dataset.tab).classList.add('active');
406
+ });
407
+ });
408
+
409
+ // Simulate file upload for demo purposes
410
+ document.getElementById('zip-upload').addEventListener('change', function(e) {
411
+ const fileName = e.target.files[0]?.name || 'Aucun fichier sélectionné';
412
+ alert(`Fichier "${fileName}" prêt à être envoyé à l'armée IA pour correction!`);
413
+ });
414
+
415
+ // Animation for soldier cards on scroll
416
+ const observerOptions = {
417
+ threshold: 0.1
418
+ };
419
+
420
+ const observer = new IntersectionObserver((entries) => {
421
+ entries.forEach(entry => {
422
+ if (entry.isIntersecting) {
423
+ entry.target.style.opacity = 1;
424
+ entry.target.style.transform = 'translateY(0)';
425
+ }
426
+ });
427
+ }, observerOptions);
428
+
429
+ document.querySelectorAll('.soldier-card').forEach((card, index) => {
430
+ card.style.opacity = 0;
431
+ card.style.transform = 'translateY(20px)';
432
+ card.style.transition = `all 0.5s ease ${index * 0.1}s`;
433
+ observer.observe(card);
434
+ });
435
+
436
+ // Simulate progress bar animation
437
+ setInterval(() => {
438
+ const progressBar = document.querySelector('.progress-bar');
439
+ const currentWidth = parseInt(progressBar.style.width) || 0;
440
+ if (currentWidth < 100) {
441
+ progressBar.style.width = `${currentWidth + 1}%`;
442
+ }
443
+ }, 1000);
444
+ </script>
445
+ <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=docto41/arm-e-ia-de-correction-web" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
446
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Creer une armées de soldat de 100000 IA pour modifier et corriger les sites qui contient des erreurs afin de les corriger et aussi les modifier , il sera possible de modifier et corriger a patir de :lien URL , ZIP ? CODE ? SCRYPT ECT....et télécharger en html , Zip ..