docto41 commited on
Commit
79ff96c
·
verified ·
1 Parent(s): ddf7f64

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +435 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Infraauto
3
- emoji: 📊
4
- colorFrom: pink
5
- colorTo: indigo
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: infraauto
3
+ emoji: 🐳
4
+ colorFrom: gray
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,435 @@
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>Infrastructure Web Automatisée</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ background-color: #f8fafc;
15
+ }
16
+
17
+ .gradient-bg {
18
+ background: linear-gradient(135deg, #6b21a8 0%, #1e40af 100%);
19
+ }
20
+
21
+ .domain-card {
22
+ transition: all 0.3s ease;
23
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
24
+ }
25
+
26
+ .domain-card:hover {
27
+ transform: translateY(-5px);
28
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
29
+ }
30
+
31
+ .progress-bar {
32
+ height: 8px;
33
+ border-radius: 4px;
34
+ background-color: #e2e8f0;
35
+ }
36
+
37
+ .progress-fill {
38
+ height: 100%;
39
+ border-radius: 4px;
40
+ background: linear-gradient(90deg, #4f46e5 0%, #9333ea 100%);
41
+ transition: width 0.5s ease;
42
+ }
43
+
44
+ .status-badge {
45
+ display: inline-flex;
46
+ align-items: center;
47
+ padding: 0.25rem 0.75rem;
48
+ border-radius: 9999px;
49
+ font-size: 0.75rem;
50
+ font-weight: 600;
51
+ }
52
+
53
+ .globe-spin {
54
+ animation: spin 5s linear infinite;
55
+ }
56
+
57
+ @keyframes spin {
58
+ from { transform: rotate(0deg); }
59
+ to { transform: rotate(360deg); }
60
+ }
61
+
62
+ .pulse {
63
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
64
+ }
65
+
66
+ @keyframes pulse {
67
+ 0%, 100% { opacity: 1; }
68
+ 50% { opacity: 0.5; }
69
+ }
70
+ </style>
71
+ </head>
72
+ <body>
73
+ <div class="min-h-screen">
74
+ <!-- Header -->
75
+ <header class="gradient-bg text-white">
76
+ <div class="container mx-auto px-4 py-6">
77
+ <div class="flex justify-between items-center">
78
+ <div class="flex items-center space-x-2">
79
+ <i class="fas fa-bolt text-yellow-300 text-2xl"></i>
80
+ <h1 class="text-2xl font-bold">InfraAuto</h1>
81
+ </div>
82
+ <div class="flex items-center space-x-4">
83
+ <button class="px-4 py-2 bg-white text-purple-800 rounded-md font-medium hover:bg-opacity-90 transition">
84
+ <i class="fas fa-user mr-2"></i>Mon compte
85
+ </button>
86
+ </div>
87
+ </div>
88
+ </div>
89
+ </header>
90
+
91
+ <!-- Main Content -->
92
+ <main class="container mx-auto px-4 py-8">
93
+ <!-- Hero Section -->
94
+ <section class="mb-12">
95
+ <div class="bg-white rounded-xl shadow-lg p-8">
96
+ <div class="flex flex-col md:flex-row items-center">
97
+ <div class="md:w-1/2 mb-8 md:mb-0">
98
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Infrastructure Web Automatisée en 1 Click</h2>
99
+ <p class="text-gray-600 mb-6">
100
+ Enregistrement instantané de domaine, déploiement SSL, DNS ultra-rapide et intégration Google -
101
+ le tout automatisé 24h/7j avec propagation mondiale en secondes.
102
+ </p>
103
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
104
+ <div class="relative flex-grow">
105
+ <input type="text" placeholder="Rechercher un domaine..."
106
+ class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-transparent">
107
+ <button class="absolute right-2 top-2 bg-purple-600 text-white px-4 py-1 rounded-md hover:bg-purple-700 transition">
108
+ <i class="fas fa-search"></i>
109
+ </button>
110
+ </div>
111
+ <button class="bg-purple-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-purple-700 transition whitespace-nowrap">
112
+ <i class="fas fa-plus mr-2"></i>Nouveau domaine
113
+ </button>
114
+ </div>
115
+ </div>
116
+ <div class="md:w-1/2 flex justify-center">
117
+ <div class="relative">
118
+ <i class="fas fa-globe-americas text-purple-200 text-8xl globe-spin"></i>
119
+ <div class="absolute inset-0 flex items-center justify-center">
120
+ <div class="bg-white rounded-full p-4 shadow-xl">
121
+ <i class="fas fa-bolt text-purple-600 text-4xl"></i>
122
+ </div>
123
+ </div>
124
+ </div>
125
+ </div>
126
+ </div>
127
+ </div>
128
+ </section>
129
+
130
+ <!-- Domain Status Section -->
131
+ <section class="mb-12">
132
+ <h2 class="text-2xl font-bold text-gray-800 mb-6">Vos domaines</h2>
133
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
134
+ <!-- Domain Card 1 -->
135
+ <div class="domain-card bg-white rounded-xl overflow-hidden">
136
+ <div class="p-6">
137
+ <div class="flex justify-between items-start mb-4">
138
+ <div>
139
+ <h3 class="text-xl font-bold text-gray-800">example.com</h3>
140
+ <p class="text-gray-500 text-sm">Expire le: 15/06/2024</p>
141
+ </div>
142
+ <span class="status-badge bg-green-100 text-green-800">
143
+ <i class="fas fa-check-circle mr-1"></i> Actif
144
+ </span>
145
+ </div>
146
+ <div class="mb-4">
147
+ <div class="flex justify-between text-sm text-gray-600 mb-1">
148
+ <span>SSL</span>
149
+ <span>Actif</span>
150
+ </div>
151
+ <div class="progress-bar">
152
+ <div class="progress-fill" style="width: 100%"></div>
153
+ </div>
154
+ </div>
155
+ <div class="mb-4">
156
+ <div class="flex justify-between text-sm text-gray-600 mb-1">
157
+ <span>DNS</span>
158
+ <span>Propagé à 98%</span>
159
+ </div>
160
+ <div class="progress-bar">
161
+ <div class="progress-fill" style="width: 98%"></div>
162
+ </div>
163
+ </div>
164
+ <div class="flex space-x-2">
165
+ <button class="flex-1 bg-gray-100 text-gray-700 px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-200 transition">
166
+ <i class="fas fa-cog mr-1"></i> Gérer
167
+ </button>
168
+ <button class="flex-1 bg-purple-50 text-purple-700 px-3 py-2 rounded-md text-sm font-medium hover:bg-purple-100 transition">
169
+ <i class="fas fa-chart-line mr-1"></i> Stats
170
+ </button>
171
+ </div>
172
+ </div>
173
+ </div>
174
+
175
+ <!-- Domain Card 2 -->
176
+ <div class="domain-card bg-white rounded-xl overflow-hidden">
177
+ <div class="p-6">
178
+ <div class="flex justify-between items-start mb-4">
179
+ <div>
180
+ <h3 class="text-xl font-bold text-gray-800">mon-site.fr</h3>
181
+ <p class="text-gray-500 text-sm">Expire le: 22/11/2023</p>
182
+ </div>
183
+ <span class="status-badge bg-yellow-100 text-yellow-800">
184
+ <i class="fas fa-exclamation-circle mr-1"></i> Renouvellement
185
+ </span>
186
+ </div>
187
+ <div class="mb-4">
188
+ <div class="flex justify-between text-sm text-gray-600 mb-1">
189
+ <span>SSL</span>
190
+ <span>Actif</span>
191
+ </div>
192
+ <div class="progress-bar">
193
+ <div class="progress-fill" style="width: 100%"></div>
194
+ </div>
195
+ </div>
196
+ <div class="mb-4">
197
+ <div class="flex justify-between text-sm text-gray-600 mb-1">
198
+ <span>DNS</span>
199
+ <span>Propagé à 87%</span>
200
+ </div>
201
+ <div class="progress-bar">
202
+ <div class="progress-fill" style="width: 87%"></div>
203
+ </div>
204
+ </div>
205
+ <div class="flex space-x-2">
206
+ <button class="flex-1 bg-gray-100 text-gray-700 px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-200 transition">
207
+ <i class="fas fa-cog mr-1"></i> Gérer
208
+ </button>
209
+ <button class="flex-1 bg-purple-50 text-purple-700 px-3 py-2 rounded-md text-sm font-medium hover:bg-purple-100 transition">
210
+ <i class="fas fa-chart-line mr-1"></i> Stats
211
+ </button>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Domain Card 3 -->
217
+ <div class="domain-card bg-white rounded-xl overflow-hidden">
218
+ <div class="p-6">
219
+ <div class="flex justify-between items-start mb-4">
220
+ <div>
221
+ <h3 class="text-xl font-bold text-gray-800">nouveau-projet.io</h3>
222
+ <p class="text-gray-500 text-sm">Enregistré aujourd'hui</p>
223
+ </div>
224
+ <span class="status-badge bg-blue-100 text-blue-800">
225
+ <i class="fas fa-sync-alt mr-1 pulse"></i> Propagation
226
+ </span>
227
+ </div>
228
+ <div class="mb-4">
229
+ <div class="flex justify-between text-sm text-gray-600 mb-1">
230
+ <span>SSL</span>
231
+ <span>En cours</span>
232
+ </div>
233
+ <div class="progress-bar">
234
+ <div class="progress-fill" style="width: 65%"></div>
235
+ </div>
236
+ </div>
237
+ <div class="mb-4">
238
+ <div class="flex justify-between text-sm text-gray-600 mb-1">
239
+ <span>DNS</span>
240
+ <span>Propagé à 42%</span>
241
+ </div>
242
+ <div class="progress-bar">
243
+ <div class="progress-fill" style="width: 42%"></div>
244
+ </div>
245
+ </div>
246
+ <div class="flex space-x-2">
247
+ <button class="flex-1 bg-gray-100 text-gray-700 px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-200 transition">
248
+ <i class="fas fa-cog mr-1"></i> Gérer
249
+ </button>
250
+ <button class="flex-1 bg-purple-50 text-purple-700 px-3 py-2 rounded-md text-sm font-medium hover:bg-purple-100 transition">
251
+ <i class="fas fa-chart-line mr-1"></i> Stats
252
+ </button>
253
+ </div>
254
+ </div>
255
+ </div>
256
+ </div>
257
+ </section>
258
+
259
+ <!-- Domain Details Section -->
260
+ <section>
261
+ <h2 class="text-2xl font-bold text-gray-800 mb-6">Informations du domaine</h2>
262
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden">
263
+ <!-- Tabs -->
264
+ <div class="border-b border-gray-200">
265
+ <nav class="flex -mb-px">
266
+ <button class="whitespace-nowrap py-4 px-6 border-b-2 border-purple-500 font-medium text-sm text-purple-600">
267
+ <i class="fas fa-info-circle mr-2"></i>Informations
268
+ </button>
269
+ <button class="whitespace-nowrap py-4 px-6 border-b-2 border-transparent font-medium text-sm text-gray-500 hover:text-gray-700 hover:border-gray-300">
270
+ <i class="fas fa-lock mr-2"></i>SSL
271
+ </button>
272
+ <button class="whitespace-nowrap py-4 px-6 border-b-2 border-transparent font-medium text-sm text-gray-500 hover:text-gray-700 hover:border-gray-300">
273
+ <i class="fas fa-network-wired mr-2"></i>DNS
274
+ </button>
275
+ <button class="whitespace-nowrap py-4 px-6 border-b-2 border-transparent font-medium text-sm text-gray-500 hover:text-gray-700 hover:border-gray-300">
276
+ <i class="fab fa-google mr-2"></i>Intégration Google
277
+ </button>
278
+ </nav>
279
+ </div>
280
+
281
+ <!-- Tab Content -->
282
+ <div class="p-6">
283
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
284
+ <!-- Domain Information -->
285
+ <div>
286
+ <h3 class="text-lg font-semibold text-gray-800 mb-4 flex items-center">
287
+ <i class="fas fa-info-circle text-purple-500 mr-2"></i> Domain Information
288
+ </h3>
289
+ <div class="space-y-4">
290
+ <div class="flex justify-between border-b border-gray-100 pb-2">
291
+ <span class="text-gray-500">Nom de domaine:</span>
292
+ <span class="font-medium">example.com</span>
293
+ </div>
294
+ <div class="flex justify-between border-b border-gray-100 pb-2">
295
+ <span class="text-gray-500">Statut:</span>
296
+ <span class="font-medium text-green-600">Actif</span>
297
+ </div>
298
+ <div class="flex justify-between border-b border-gray-100 pb-2">
299
+ <span class="text-gray-500">Date de création:</span>
300
+ <span class="font-medium">15/06/2022</span>
301
+ </div>
302
+ <div class="flex justify-between border-b border-gray-100 pb-2">
303
+ <span class="text-gray-500">Date d'expiration:</span>
304
+ <span class="font-medium">15/06/2024</span>
305
+ </div>
306
+ <div class="flex justify-between border-b border-gray-100 pb-2">
307
+ <span class="text-gray-500">Serveurs DNS:</span>
308
+ <span class="font-medium">ns1.infraauto.com<br>ns2.infraauto.com</span>
309
+ </div>
310
+ </div>
311
+ </div>
312
+
313
+ <!-- Registrar Information -->
314
+ <div>
315
+ <h3 class="text-lg font-semibold text-gray-800 mb-4 flex items-center">
316
+ <i class="fas fa-building text-purple-500 mr-2"></i> Registrar Information
317
+ </h3>
318
+ <div class="space-y-4">
319
+ <div class="flex justify-between border-b border-gray-100 pb-2">
320
+ <span class="text-gray-500">Registrar:</span>
321
+ <span class="font-medium">InfraAuto Registrar</span>
322
+ </div>
323
+ <div class="flex justify-between border-b border-gray-100 pb-2">
324
+ <span class="text-gray-500">WHOIS Server:</span>
325
+ <span class="font-medium">whois.infraauto.com</span>
326
+ </div>
327
+ <div class="flex justify-between border-b border-gray-100 pb-2">
328
+ <span class="text-gray-500">URL:</span>
329
+ <span class="font-medium">https://registrar.infraauto.com</span>
330
+ </div>
331
+ <div class="flex justify-between border-b border-gray-100 pb-2">
332
+ <span class="text-gray-500">Date de mise à jour:</span>
333
+ <span class="font-medium">15/06/2023</span>
334
+ </div>
335
+ </div>
336
+ </div>
337
+
338
+ <!-- Registrant Contact -->
339
+ <div>
340
+ <h3 class="text-lg font-semibold text-gray-800 mb-4 flex items-center">
341
+ <i class="fas fa-user-circle text-purple-500 mr-2"></i> Registrant Contact
342
+ </h3>
343
+ <div class="space-y-4">
344
+ <div class="flex justify-between border-b border-gray-100 pb-2">
345
+ <span class="text-gray-500">Nom:</span>
346
+ <span class="font-medium">John Doe</span>
347
+ </div>
348
+ <div class="flex justify-between border-b border-gray-100 pb-2">
349
+ <span class="text-gray-500">Organisation:</span>
350
+ <span class="font-medium">Example Corp</span>
351
+ </div>
352
+ <div class="flex justify-between border-b border-gray-100 pb-2">
353
+ <span class="text-gray-500">Email:</span>
354
+ <span class="font-medium">[email protected]</span>
355
+ </div>
356
+ <div class="flex justify-between border-b border-gray-100 pb-2">
357
+ <span class="text-gray-500">Téléphone:</span>
358
+ <span class="font-medium">+33 6 12 34 56 78</span>
359
+ </div>
360
+ <div class="flex justify-between border-b border-gray-100 pb-2">
361
+ <span class="text-gray-500">Adresse:</span>
362
+ <span class="font-medium">123 Rue Example, Paris, France</span>
363
+ </div>
364
+ </div>
365
+ </div>
366
+
367
+ <!-- Quick Actions -->
368
+ <div>
369
+ <h3 class="text-lg font-semibold text-gray-800 mb-4 flex items-center">
370
+ <i class="fas fa-bolt text-purple-500 mr-2"></i> Actions rapides
371
+ </h3>
372
+ <div class="grid grid-cols-2 gap-3">
373
+ <button class="bg-blue-50 text-blue-700 px-4 py-3 rounded-lg font-medium hover:bg-blue-100 transition flex items-center justify-center">
374
+ <i class="fas fa-sync-alt mr-2"></i> Actualiser DNS
375
+ </button>
376
+ <button class="bg-green-50 text-green-700 px-4 py-3 rounded-lg font-medium hover:bg-green-100 transition flex items-center justify-center">
377
+ <i class="fas fa-lock mr-2"></i> Renouveler SSL
378
+ </button>
379
+ <button class="bg-purple-50 text-purple-700 px-4 py-3 rounded-lg font-medium hover:bg-purple-100 transition flex items-center justify-center">
380
+ <i class="fab fa-google mr-2"></i> Intégrer Google
381
+ </button>
382
+ <button class="bg-red-50 text-red-700 px-4 py-3 rounded-lg font-medium hover:bg-red-100 transition flex items-center justify-center">
383
+ <i class="fas fa-trash-alt mr-2"></i> Supprimer
384
+ </button>
385
+ </div>
386
+ </div>
387
+ </div>
388
+ </div>
389
+ </div>
390
+ </section>
391
+ </main>
392
+
393
+ <!-- Footer -->
394
+ <footer class="bg-gray-50 border-t border-gray-200 mt-12">
395
+ <div class="container mx-auto px-4 py-8">
396
+ <div class="flex flex-col md:flex-row justify-between items-center">
397
+ <div class="flex items-center space-x-2 mb-4 md:mb-0">
398
+ <i class="fas fa-bolt text-purple-600 text-xl"></i>
399
+ <span class="font-bold text-gray-800">InfraAuto</span>
400
+ </div>
401
+ <div class="flex space-x-6">
402
+ <a href="#" class="text-gray-600 hover:text-purple-600 transition">Conditions</a>
403
+ <a href="#" class="text-gray-600 hover:text-purple-600 transition">Confidentialité</a>
404
+ <a href="#" class="text-gray-600 hover:text-purple-600 transition">Support</a>
405
+ </div>
406
+ </div>
407
+ <div class="mt-8 text-center text-gray-500 text-sm">
408
+ © 2023 InfraAuto. Tous droits réservés.
409
+ </div>
410
+ </div>
411
+ </footer>
412
+ </div>
413
+
414
+ <script>
415
+ // Simple animation for the progress bars
416
+ document.addEventListener('DOMContentLoaded', function() {
417
+ const progressBars = document.querySelectorAll('.progress-fill');
418
+
419
+ progressBars.forEach(bar => {
420
+ const width = bar.style.width;
421
+ bar.style.width = '0';
422
+ setTimeout(() => {
423
+ bar.style.width = width;
424
+ }, 100);
425
+ });
426
+
427
+ // Simulate domain search
428
+ const searchBtn = document.querySelector('button.bg-purple-600');
429
+ searchBtn.addEventListener('click', function() {
430
+ alert('Recherche de domaine en cours...');
431
+ });
432
+ });
433
+ </script>
434
+ <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/infraauto" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
435
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ 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/7j avec propagation mondiale en secondes.:: Domain Information Registrar Information Registrant Contact ;; avec une blle interface