docto41 commited on
Commit
ab39c90
·
verified ·
1 Parent(s): fc5f451

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +404 -19
  3. prompts.txt +4 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Infinityweb
3
- emoji: 😻
4
  colorFrom: gray
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: infinityweb
3
+ emoji: 🐳
4
  colorFrom: gray
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,404 @@
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>InfinityWeb - Infrastructure Automatisée en 1 Click</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, #6e8efb 0%, #a777e3 100%);
12
+ }
13
+ .dns-animation {
14
+ position: relative;
15
+ overflow: hidden;
16
+ }
17
+ .dns-animation::after {
18
+ content: "";
19
+ position: absolute;
20
+ top: 0;
21
+ left: -100%;
22
+ width: 100%;
23
+ height: 100%;
24
+ background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
25
+ animation: shine 2s infinite;
26
+ }
27
+ @keyframes shine {
28
+ 100% {
29
+ left: 100%;
30
+ }
31
+ }
32
+ .feature-card:hover {
33
+ transform: translateY(-5px);
34
+ box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
35
+ }
36
+ .globe-spin {
37
+ animation: spin 15s linear infinite;
38
+ }
39
+ @keyframes spin {
40
+ from { transform: rotate(0deg); }
41
+ to { transform: rotate(360deg); }
42
+ }
43
+ .pulse {
44
+ animation: pulse 2s infinite;
45
+ }
46
+ @keyframes pulse {
47
+ 0% { transform: scale(1); }
48
+ 50% { transform: scale(1.05); }
49
+ 100% { transform: scale(1); }
50
+ }
51
+ </style>
52
+ </head>
53
+ <body class="bg-gray-50">
54
+ <!-- Navigation -->
55
+ <nav class="bg-white shadow-lg">
56
+ <div class="container mx-auto px-6 py-3">
57
+ <div class="flex items-center justify-between">
58
+ <div class="flex items-center">
59
+ <i class="fas fa-infinity text-indigo-600 text-3xl mr-2"></i>
60
+ <span class="font-bold text-xl text-gray-800">InfinityWeb</span>
61
+ </div>
62
+ <div class="hidden md:flex space-x-8">
63
+ <a href="#" class="text-gray-800 hover:text-indigo-600">Accueil</a>
64
+ <a href="#" class="text-gray-800 hover:text-indigo-600">Fonctionnalités</a>
65
+ <a href="#" class="text-gray-800 hover:text-indigo-600">Tarifs</a>
66
+ <a href="#" class="text-gray-800 hover:text-indigo-600">API</a>
67
+ <a href="#" class="text-gray-800 hover:text-indigo-600">Support</a>
68
+ </div>
69
+ <div>
70
+ <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-2 rounded-lg font-medium">
71
+ <i class="fas fa-user-plus mr-2"></i> S'inscrire
72
+ </button>
73
+ </div>
74
+ </div>
75
+ </div>
76
+ </nav>
77
+
78
+ <!-- Hero Section -->
79
+ <div class="gradient-bg text-white py-20">
80
+ <div class="container mx-auto px-6">
81
+ <div class="flex flex-col md:flex-row items-center">
82
+ <div class="md:w-1/2 mb-10 md:mb-0">
83
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Infrastructure Web Automatisée en 1 Click</h1>
84
+ <p class="text-xl mb-8">Enregistrement instantané de domaine, déploiement SSL, DNS ultra-rapide et intégration Google - le tout automatisé 24h/7j avec propagation mondiale en secondes.</p>
85
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
86
+ <button class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-3 rounded-lg font-bold text-lg pulse">
87
+ <i class="fas fa-bolt mr-2"></i> Essai Gratuit
88
+ </button>
89
+ <button class="border-2 border-white hover:bg-indigo-700 px-8 py-3 rounded-lg font-bold text-lg">
90
+ <i class="fas fa-play-circle mr-2"></i> Voir la démo
91
+ </button>
92
+ </div>
93
+ </div>
94
+ <div class="md:w-1/2 flex justify-center">
95
+ <div class="relative">
96
+ <img src="https://cdn-icons-png.flaticon.com/512/2906/2906274.png" alt="Globe" class="w-64 h-64 globe-spin">
97
+ <div class="absolute -bottom-5 -right-5 bg-white p-4 rounded-full shadow-xl">
98
+ <div class="bg-green-500 text-white rounded-full p-3">
99
+ <i class="fas fa-check text-2xl"></i>
100
+ </div>
101
+ </div>
102
+ </div>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ </div>
107
+
108
+ <!-- Stats Section -->
109
+ <div class="bg-white py-12">
110
+ <div class="container mx-auto px-6">
111
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 text-center">
112
+ <div class="border-r border-gray-200 pr-0 md:pr-8">
113
+ <div class="text-4xl font-bold text-indigo-600 mb-2">0.3s</div>
114
+ <div class="text-gray-600">Propagation DNS</div>
115
+ </div>
116
+ <div class="border-r border-gray-200 pr-0 md:pr-8">
117
+ <div class="text-4xl font-bold text-indigo-600 mb-2">100%</div>
118
+ <div class="text-gray-600">Uptime SSL</div>
119
+ </div>
120
+ <div class="border-r border-gray-200 pr-0 md:pr-8">
121
+ <div class="text-4xl font-bold text-indigo-600 mb-2">24/7</div>
122
+ <div class="text-gray-600">Automatisation</div>
123
+ </div>
124
+ <div>
125
+ <div class="text-4xl font-bold text-indigo-600 mb-2">200+</div>
126
+ <div class="text-gray-600">Pays couverts</div>
127
+ </div>
128
+ </div>
129
+ </div>
130
+ </div>
131
+
132
+ <!-- Features Section -->
133
+ <div class="py-16 bg-gray-50">
134
+ <div class="container mx-auto px-6">
135
+ <h2 class="text-3xl font-bold text-center mb-16">Toute une infrastructure en un seul click</h2>
136
+
137
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
138
+ <!-- Feature 1 -->
139
+ <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
140
+ <div class="bg-indigo-100 text-indigo-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
141
+ <i class="fas fa-globe text-2xl"></i>
142
+ </div>
143
+ <h3 class="text-xl font-bold mb-3">Enregistrement Instantané</h3>
144
+ <p class="text-gray-600 mb-4">Obtenez votre nom de domaine en quelques secondes avec notre système automatisé de vérification et d'enregistrement.</p>
145
+ <div class="flex items-center text-indigo-600 font-medium">
146
+ <span>En savoir plus</span>
147
+ <i class="fas fa-arrow-right ml-2"></i>
148
+ </div>
149
+ </div>
150
+
151
+ <!-- Feature 2 -->
152
+ <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
153
+ <div class="bg-green-100 text-green-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
154
+ <i class="fas fa-lock text-2xl"></i>
155
+ </div>
156
+ <h3 class="text-xl font-bold mb-3">SSL Automatique</h3>
157
+ <p class="text-gray-600 mb-4">Certificats SSL déployés automatiquement avec renouvellement sans interruption pour une sécurité permanente.</p>
158
+ <div class="flex items-center text-indigo-600 font-medium">
159
+ <span>En savoir plus</span>
160
+ <i class="fas fa-arrow-right ml-2"></i>
161
+ </div>
162
+ </div>
163
+
164
+ <!-- Feature 3 -->
165
+ <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
166
+ <div class="bg-blue-100 text-blue-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
167
+ <i class="fas fa-tachometer-alt text-2xl"></i>
168
+ </div>
169
+ <h3 class="text-xl font-bold mb-3">DNS Ultra-Rapide</h3>
170
+ <p class="text-gray-600 mb-4">Propagation mondiale en secondes grâce à notre réseau Anycast de nouvelle génération.</p>
171
+ <div class="flex items-center text-indigo-600 font-medium">
172
+ <span>En savoir plus</span>
173
+ <i class="fas fa-arrow-right ml-2"></i>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Feature 4 -->
178
+ <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
179
+ <div class="bg-yellow-100 text-yellow-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
180
+ <i class="fab fa-google text-2xl"></i>
181
+ </div>
182
+ <h3 class="text-xl font-bold mb-3">Intégration Google</h3>
183
+ <p class="text-gray-600 mb-4">Configuration automatique avec Google Workspace, Analytics et Search Console pour une présence en ligne immédiate.</p>
184
+ <div class="flex items-center text-indigo-600 font-medium">
185
+ <span>En savoir plus</span>
186
+ <i class="fas fa-arrow-right ml-2"></i>
187
+ </div>
188
+ </div>
189
+
190
+ <!-- Feature 5 -->
191
+ <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
192
+ <div class="bg-purple-100 text-purple-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
193
+ <i class="fas fa-robot text-2xl"></i>
194
+ </div>
195
+ <h3 class="text-xl font-bold mb-3">Automatisation 24/7</h3>
196
+ <p class="text-gray-600 mb-4">Notre système intelligent gère tout sans intervention humaine, même la nuit et les week-ends.</p>
197
+ <div class="flex items-center text-indigo-600 font-medium">
198
+ <span>En savoir plus</span>
199
+ <i class="fas fa-arrow-right ml-2"></i>
200
+ </div>
201
+ </div>
202
+
203
+ <!-- Feature 6 -->
204
+ <div class="bg-white p-8 rounded-xl shadow-md feature-card transition duration-300">
205
+ <div class="bg-red-100 text-red-600 w-16 h-16 rounded-full flex items-center justify-center mb-6">
206
+ <i class="fas fa-shield-alt text-2xl"></i>
207
+ </div>
208
+ <h3 class="text-xl font-bold mb-3">Sécurité Totale</h3>
209
+ <p class="text-gray-600 mb-4">Protection DDoS, pare-feu applicatif et sauvegardes automatiques inclus dans chaque package.</p>
210
+ <div class="flex items-center text-indigo-600 font-medium">
211
+ <span>En savoir plus</span>
212
+ <i class="fas fa-arrow-right ml-2"></i>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ <!-- How It Works -->
220
+ <div class="py-16 bg-white">
221
+ <div class="container mx-auto px-6">
222
+ <h2 class="text-3xl font-bold text-center mb-16">Comment ça marche ?</h2>
223
+
224
+ <div class="flex flex-col md:flex-row items-center mb-16">
225
+ <div class="md:w-1/2 mb-8 md:mb-0">
226
+ <div class="bg-indigo-100 text-indigo-800 inline-block px-4 py-1 rounded-full mb-4">
227
+ <span class="font-medium">Étape 1</span>
228
+ </div>
229
+ <h3 class="text-2xl font-bold mb-4">Choisissez votre nom de domaine</h3>
230
+ <p class="text-gray-600 mb-6">Notre moteur de recherche intelligent vérifie instantanément la disponibilité dans plus de 1000 extensions.</p>
231
+ <div class="flex items-center space-x-4">
232
+ <div class="bg-gray-200 rounded-lg p-3">
233
+ <i class="fas fa-search text-indigo-600"></i>
234
+ </div>
235
+ <div>
236
+ <div class="font-medium">Recherche en temps réel</div>
237
+ <div class="text-sm text-gray-500">Disponibilité vérifiée en 0.2s</div>
238
+ </div>
239
+ </div>
240
+ </div>
241
+ <div class="md:w-1/2 flex justify-center">
242
+ <img src="https://cdn-icons-png.flaticon.com/512/3406/3406957.png" alt="Search domain" class="w-64 h-64">
243
+ </div>
244
+ </div>
245
+
246
+ <div class="flex flex-col md:flex-row items-center mb-16">
247
+ <div class="md:w-1/2 order-2 md:order-1 flex justify-center">
248
+ <img src="https://cdn-icons-png.flaticon.com/512/1063/1063196.png" alt="Configuration" class="w-64 h-64">
249
+ </div>
250
+ <div class="md:w-1/2 order-1 md:order-2 mb-8 md:mb-0 md:pl-12">
251
+ <div class="bg-green-100 text-green-800 inline-block px-4 py-1 rounded-full mb-4">
252
+ <span class="font-medium">Étape 2</span>
253
+ </div>
254
+ <h3 class="text-2xl font-bold mb-4">Configuration Automatique</h3>
255
+ <p class="text-gray-600 mb-6">En un clic, nous configurons DNS, SSL, email et intégrations avec les services Google.</p>
256
+ <div class="space-y-3">
257
+ <div class="flex items-center">
258
+ <i class="fas fa-check-circle text-green-500 mr-3"></i>
259
+ <span>Certificat SSL déployé</span>
260
+ </div>
261
+ <div class="flex items-center">
262
+ <i class="fas fa-check-circle text-green-500 mr-3"></i>
263
+ <span>DNS Anycast configuré</span>
264
+ </div>
265
+ <div class="flex items-center">
266
+ <i class="fas fa-check-circle text-green-500 mr-3"></i>
267
+ <span>Google Analytics intégré</span>
268
+ </div>
269
+ </div>
270
+ </div>
271
+ </div>
272
+
273
+ <div class="flex flex-col md:flex-row items-center">
274
+ <div class="md:w-1/2 mb-8 md:mb-0">
275
+ <div class="bg-blue-100 text-blue-800 inline-block px-4 py-1 rounded-full mb-4">
276
+ <span class="font-medium">Étape 3</span>
277
+ </div>
278
+ <h3 class="text-2xl font-bold mb-4">Propagation Instantanée</h3>
279
+ <p class="text-gray-600 mb-6">Notre réseau mondial propage vos changements en secondes, pas en heures.</p>
280
+ <div class="bg-gray-100 p-4 rounded-lg dns-animation">
281
+ <div class="flex justify-between items-center">
282
+ <div>
283
+ <div class="font-medium">DNS Propagation</div>
284
+ <div class="text-sm text-gray-500">En cours dans 200+ pays</div>
285
+ </div>
286
+ <div class="text-green-500">
287
+ <i class="fas fa-bolt"></i> 0.3s
288
+ </div>
289
+ </div>
290
+ </div>
291
+ </div>
292
+ <div class="md:w-1/2 flex justify-center">
293
+ <img src="https://cdn-icons-png.flaticon.com/512/1925/1925158.png" alt="Propagation" class="w-64 h-64">
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+
299
+ <!-- CTA Section -->
300
+ <div class="gradient-bg text-white py-20">
301
+ <div class="container mx-auto px-6 text-center">
302
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Prêt à automatiser votre infrastructure web ?</h2>
303
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Gagnez des heures de configuration technique et obtenez une présence en ligne professionnelle en quelques clics.</p>
304
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
305
+ <button class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-4 rounded-lg font-bold text-lg">
306
+ <i class="fas fa-play mr-2"></i> Essai Gratuit 14 jours
307
+ </button>
308
+ <button class="border-2 border-white hover:bg-indigo-700 px-8 py-4 rounded-lg font-bold text-lg">
309
+ <i class="fas fa-phone-alt mr-2"></i> Parler à un expert
310
+ </button>
311
+ </div>
312
+ </div>
313
+ </div>
314
+
315
+ <!-- Footer -->
316
+ <footer class="bg-gray-900 text-white pt-12 pb-6">
317
+ <div class="container mx-auto px-6">
318
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
319
+ <div>
320
+ <h3 class="text-lg font-bold mb-4 flex items-center">
321
+ <i class="fas fa-infinity text-indigo-500 mr-2"></i> InfinityWeb
322
+ </h3>
323
+ <p class="text-gray-400 mb-4">L'infrastructure web automatisée pour les professionnels.</p>
324
+ <div class="flex space-x-4">
325
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
326
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a>
327
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-github"></i></a>
328
+ </div>
329
+ </div>
330
+ <div>
331
+ <h3 class="text-lg font-bold mb-4">Produit</h3>
332
+ <ul class="space-y-2">
333
+ <li><a href="#" class="text-gray-400 hover:text-white">Fonctionnalités</a></li>
334
+ <li><a href="#" class="text-gray-400 hover:text-white">Tarifs</a></li>
335
+ <li><a href="#" class="text-gray-400 hover:text-white">API</a></li>
336
+ <li><a href="#" class="text-gray-400 hover:text-white">Intégrations</a></li>
337
+ </ul>
338
+ </div>
339
+ <div>
340
+ <h3 class="text-lg font-bold mb-4">Ressources</h3>
341
+ <ul class="space-y-2">
342
+ <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
343
+ <li><a href="#" class="text-gray-400 hover:text-white">Guides</a></li>
344
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
345
+ <li><a href="#" class="text-gray-400 hover:text-white">Statut</a></li>
346
+ </ul>
347
+ </div>
348
+ <div>
349
+ <h3 class="text-lg font-bold mb-4">Entreprise</h3>
350
+ <ul class="space-y-2">
351
+ <li><a href="#" class="text-gray-400 hover:text-white">À propos</a></li>
352
+ <li><a href="#" class="text-gray-400 hover:text-white">Carrières</a></li>
353
+ <li><a href="#" class="text-gray-400 hover:text-white">Politique de confidentialité</a></li>
354
+ <li><a href="#" class="text-gray-400 hover:text-white">Conditions d'utilisation</a></li>
355
+ </ul>
356
+ </div>
357
+ </div>
358
+ <div class="border-t border-gray-800 pt-6">
359
+ <div class="flex flex-col md:flex-row justify-between items-center">
360
+ <p class="text-gray-400 mb-4 md:mb-0">© 2023 InfinityWeb. Tous droits réservés.</p>
361
+ <div class="flex space-x-6">
362
+ <img src="https://upload.wikimedia.org/wikipedia/commons/5/5e/Visa_Inc._logo.svg" alt="Visa" class="h-6">
363
+ <img src="https://upload.wikimedia.org/wikipedia/commons/2/2a/Mastercard-logo.svg" alt="MasterCard" class="h-6">
364
+ <img src="https://upload.wikimedia.org/wikipedia/commons/b/b5/PayPal.svg" alt="PayPal" class="h-6">
365
+ <img src="https://upload.wikimedia.org/wikipedia/commons/8/89/Bitcoin.svg" alt="Bitcoin" class="h-6">
366
+ </div>
367
+ </div>
368
+ </div>
369
+ </div>
370
+ </footer>
371
+
372
+ <script>
373
+ // Animation for the DNS propagation feature
374
+ const dnsAnimation = document.querySelector('.dns-animation');
375
+
376
+ setInterval(() => {
377
+ dnsAnimation.classList.toggle('dns-animation');
378
+ setTimeout(() => {
379
+ dnsAnimation.classList.toggle('dns-animation');
380
+ }, 100);
381
+ }, 5000);
382
+
383
+ // Simple demo interaction
384
+ document.querySelectorAll('.feature-card').forEach(card => {
385
+ card.addEventListener('mouseenter', function() {
386
+ const icon = this.querySelector('div:first-child');
387
+ icon.classList.add('transform', 'scale-110');
388
+ });
389
+
390
+ card.addEventListener('mouseleave', function() {
391
+ const icon = this.querySelector('div:first-child');
392
+ icon.classList.remove('transform', 'scale-110');
393
+ });
394
+ });
395
+
396
+ // Mock domain search functionality
397
+ const searchBtn = document.querySelector('.pulse');
398
+ searchBtn.addEventListener('click', function() {
399
+ // In a real app, this would open a domain search modal
400
+ alert("Système de recherche de domaine lancé! Essayez avec votre nom préféré.");
401
+ });
402
+ </script>
403
+ <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/infinityweb" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
404
+ </html>
prompts.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ https://k4g.com/product/euro-truck-simulator-2-steam-latam-cd-key-standard-edition-cd-key-54A064B3?r=xxlgamer: special ile de la reunion
2
+ probleme des boutons non cliquable veuillez corriger toutes les erreur des boutons qui ne foctionne pas activer toutes les boutons non fonctionnel , réparer toute et refaire une mise a jours pour toute corriger les problelme de fonctionnement :ajouter bouton paypal , stripe , avec mes information pour etre payer , ajouter panier d'achat , obligatio de sabonner pour utiliser le site gratuitement : je veux acces gratuite pour moi seulement administrateur : [email protected] : Admin270574@ et [email protected] : Admin270574@
3
+ je veux acces gratuite pour moi seulement administrateur : [email protected] : Admin270574@ et [email protected] : Admin270574@
4
+ Infrastructure Web Automatisée en 1 Click Enregistrement instantané de domaine, déploiement SSL, DNS ultra-rapide et intégration Google - le tout automatisé 24h/24 et 7j/7 avec propagation mondiale en secondes.