docto41 commited on
Commit
cb5f10e
·
verified ·
1 Parent(s): 8f3566a

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +421 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Nexusia
3
- emoji:
4
- colorFrom: green
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: nexusia
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: yellow
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,421 @@
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>NexusAI - Plateforme IA Ultime</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=Orbitron:wght@400;500;700;900&display=swap');
11
+
12
+ :root {
13
+ --primary: #00f0ff;
14
+ --secondary: #ff00f0;
15
+ --dark: #0a0a1a;
16
+ --light: #f0f0ff;
17
+ }
18
+
19
+ body {
20
+ font-family: 'Orbitron', sans-serif;
21
+ background-color: var(--dark);
22
+ color: var(--light);
23
+ overflow-x: hidden;
24
+ }
25
+
26
+ .glow {
27
+ text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
28
+ }
29
+
30
+ .btn-glow {
31
+ box-shadow: 0 0 15px var(--primary);
32
+ transition: all 0.3s ease;
33
+ }
34
+
35
+ .btn-glow:hover {
36
+ box-shadow: 0 0 25px var(--primary), 0 0 35px var(--secondary);
37
+ transform: scale(1.05);
38
+ }
39
+
40
+ .holographic-bg {
41
+ background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(255, 0, 240, 0.1) 100%);
42
+ backdrop-filter: blur(10px);
43
+ border: 1px solid rgba(0, 240, 255, 0.3);
44
+ }
45
+
46
+ .pulse {
47
+ animation: pulse 2s infinite;
48
+ }
49
+
50
+ @keyframes pulse {
51
+ 0% { opacity: 0.7; }
52
+ 50% { opacity: 1; }
53
+ 100% { opacity: 0.7; }
54
+ }
55
+
56
+ .float {
57
+ animation: float 6s ease-in-out infinite;
58
+ }
59
+
60
+ @keyframes float {
61
+ 0% { transform: translateY(0px); }
62
+ 50% { transform: translateY(-20px); }
63
+ 100% { transform: translateY(0px); }
64
+ }
65
+
66
+ .service-btn {
67
+ transition: all 0.3s ease;
68
+ position: relative;
69
+ overflow: hidden;
70
+ cursor: pointer;
71
+ }
72
+
73
+ .service-btn::before {
74
+ content: '';
75
+ position: absolute;
76
+ top: -50%;
77
+ left: -50%;
78
+ width: 200%;
79
+ height: 200%;
80
+ background: linear-gradient(
81
+ to bottom right,
82
+ rgba(0, 240, 255, 0) 0%,
83
+ rgba(0, 240, 255, 0.1) 20%,
84
+ rgba(0, 240, 255, 0) 40%
85
+ );
86
+ transform: rotate(30deg);
87
+ transition: all 0.7s ease;
88
+ }
89
+
90
+ .service-btn:hover::before {
91
+ left: 100%;
92
+ top: 100%;
93
+ }
94
+
95
+ .grid-container {
96
+ display: grid;
97
+ grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
98
+ gap: 1rem;
99
+ }
100
+
101
+ .terminal {
102
+ background: rgba(10, 10, 20, 0.8);
103
+ border: 1px solid var(--primary);
104
+ border-radius: 5px;
105
+ font-family: monospace;
106
+ height: 300px;
107
+ overflow-y: auto;
108
+ }
109
+
110
+ .terminal-line {
111
+ border-left: 2px solid var(--primary);
112
+ padding-left: 10px;
113
+ margin: 5px 0;
114
+ animation: type 0.5s steps(40, end);
115
+ }
116
+
117
+ @keyframes type {
118
+ from { width: 0; }
119
+ to { width: 100%; }
120
+ }
121
+
122
+ .scanline {
123
+ position: absolute;
124
+ top: 0;
125
+ left: 0;
126
+ width: 100%;
127
+ height: 100%;
128
+ background: linear-gradient(
129
+ to bottom,
130
+ rgba(0, 240, 255, 0) 0%,
131
+ rgba(0, 240, 255, 0.05) 50%,
132
+ rgba(0, 240, 255, 0) 100%
133
+ );
134
+ animation: scan 8s linear infinite;
135
+ pointer-events: none;
136
+ }
137
+
138
+ @keyframes scan {
139
+ 0% { top: -100%; }
140
+ 100% { top: 100%; }
141
+ }
142
+
143
+ .neon-border {
144
+ position: relative;
145
+ }
146
+
147
+ .neon-border::after {
148
+ content: '';
149
+ position: absolute;
150
+ top: -2px;
151
+ left: -2px;
152
+ right: -2px;
153
+ bottom: -2px;
154
+ background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
155
+ background-size: 200% 200%;
156
+ z-index: -1;
157
+ border-radius: inherit;
158
+ animation: borderGlow 3s linear infinite;
159
+ opacity: 0.7;
160
+ }
161
+
162
+ @keyframes borderGlow {
163
+ 0% { background-position: 0% 50%; }
164
+ 50% { background-position: 100% 50%; }
165
+ 100% { background-position: 0% 50%; }
166
+ }
167
+
168
+ .auto-activate {
169
+ animation: autoActivate 3s infinite alternate;
170
+ }
171
+
172
+ @keyframes autoActivate {
173
+ 0% { transform: scale(1); box-shadow: 0 0 15px var(--primary); }
174
+ 100% { transform: scale(1.05); box-shadow: 0 0 25px var(--primary), 0 0 35px var(--secondary); }
175
+ }
176
+ </style>
177
+ </head>
178
+ <body class="min-h-screen relative overflow-hidden">
179
+ <!-- Scanline effect -->
180
+ <div class="scanline"></div>
181
+
182
+ <!-- Floating particles -->
183
+ <div class="absolute inset-0 overflow-hidden pointer-events-none">
184
+ <div class="absolute top-1/4 left-1/4 w-2 h-2 rounded-full bg-blue-500 opacity-70 float" style="animation-delay: 0s;"></div>
185
+ <div class="absolute top-1/3 left-3/4 w-3 h-3 rounded-full bg-purple-500 opacity-70 float" style="animation-delay: 1s;"></div>
186
+ <div class="absolute top-2/3 left-1/5 w-4 h-4 rounded-full bg-cyan-500 opacity-70 float" style="animation-delay: 2s;"></div>
187
+ <div class="absolute top-3/4 left-2/3 w-2 h-2 rounded-full bg-pink-500 opacity-70 float" style="animation-delay: 3s;"></div>
188
+ </div>
189
+
190
+ <!-- Main container -->
191
+ <div class="container mx-auto px-4 py-8 relative z-10">
192
+ <!-- Header -->
193
+ <header class="flex flex-col items-center mb-12">
194
+ <div class="text-center mb-6">
195
+ <h1 class="text-5xl md:text-7xl font-bold glow mb-4">NEXUS<span class="text-purple-500">AI</span></h1>
196
+ <p class="text-xl md:text-2xl text-blue-300">Plateforme Ultime d'Intelligence Artificielle</p>
197
+ </div>
198
+
199
+ <div class="w-full max-w-4xl holographic-bg rounded-xl p-6 mb-8 neon-border">
200
+ <div class="flex flex-col md:flex-row items-center justify-between gap-6">
201
+ <div class="flex-1">
202
+ <h2 class="text-2xl font-bold mb-4">Centre de Commande IA</h2>
203
+ <p class="text-blue-200 mb-4">Accédez à 96,969,696+ services IA d'un seul clic. Le futur de l'automatisation est là.</p>
204
+ <div class="flex items-center gap-4">
205
+ <div class="flex items-center">
206
+ <div class="w-3 h-3 rounded-full bg-green-500 mr-2 pulse"></div>
207
+ <span class="text-sm">Système Actif</span>
208
+ </div>
209
+ <div class="flex items-center">
210
+ <div class="w-3 h-3 rounded-full bg-blue-500 mr-2 pulse" style="animation-delay: 0.5s;"></div>
211
+ <span class="text-sm">96,969,696 Services</span>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <div class="terminal w-full md:w-1/2 h-64 p-4">
217
+ <div class="terminal-line text-green-400">> Initialisation des systèmes NexusAI...</div>
218
+ <div class="terminal-line text-green-400">> Chargement du Réseau Neuronal Quantique...</div>
219
+ <div class="terminal-line text-blue-400">> Synchronisation avec 96,969,696 services IA...</div>
220
+ <div class="terminal-line text-purple-400">> Établissement des liens multidimensionnels...</div>
221
+ <div class="terminal-line text-green-400">> Système prêt. En attente de commandes.</div>
222
+ <div class="terminal-line text-white blink">_</div>
223
+ </div>
224
+ </div>
225
+ </div>
226
+
227
+ <div class="relative w-full max-w-2xl">
228
+ <input type="text" placeholder="Rechercher des services IA..." class="w-full bg-black bg-opacity-50 border border-blue-500 rounded-full py-3 px-6 text-white focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
229
+ <button class="absolute right-2 top-1/2 transform -translate-y-1/2 bg-blue-600 hover:bg-blue-700 text-white rounded-full p-2 btn-glow">
230
+ <i class="fas fa-search"></i>
231
+ </button>
232
+ </div>
233
+ </header>
234
+
235
+ <!-- Main content -->
236
+ <main>
237
+ <!-- Category tabs -->
238
+ <div class="flex flex-wrap justify-center gap-2 mb-8">
239
+ <button class="px-4 py-2 bg-blue-900 bg-opacity-50 rounded-full hover:bg-blue-700 transition-all btn-glow">Tous les Services</button>
240
+ <button class="px-4 py-2 bg-purple-900 bg-opacity-50 rounded-full hover:bg-purple-700 transition-all btn-glow">Création</button>
241
+ <button class="px-4 py-2 bg-green-900 bg-opacity-50 rounded-full hover:bg-green-700 transition-all btn-glow">Analyse</button>
242
+ <button class="px-4 py-2 bg-red-900 bg-opacity-50 rounded-full hover:bg-red-700 transition-all btn-glow">Automatisation</button>
243
+ <button class="px-4 py-2 bg-yellow-900 bg-opacity-50 rounded-full hover:bg-yellow-700 transition-all btn-glow">Productivité</button>
244
+ <button class="px-4 py-2 bg-pink-900 bg-opacity-50 rounded-full hover:bg-pink-700 transition-all btn-glow">Communication</button>
245
+ </div>
246
+
247
+ <!-- Service grid -->
248
+ <div class="grid-container mb-12">
249
+ <!-- Services avec activation automatique -->
250
+ <button class="service-btn bg-blue-900 bg-opacity-50 rounded-lg p-4 flex flex-col items-center text-center hover:bg-blue-700 hover:transform hover:scale-105 transition-all duration-300 h-full auto-activate" data-service="assistant" data-url="https://exemple.com/assistant">
251
+ <div class="text-4xl mb-3 text-blue-400"><i class="fas fa-robot"></i></div>
252
+ <h3 class="font-bold mb-2">Assistant IA</h3>
253
+ <p class="text-sm text-blue-300">Assistant virtuel intelligent 24/7</p>
254
+ </button>
255
+
256
+ <button class="service-btn bg-purple-900 bg-opacity-50 rounded-lg p-4 flex flex-col items-center text-center hover:bg-purple-700 hover:transform hover:scale-105 transition-all duration-300 h-full auto-activate" data-service="image" data-url="https://exemple.com/image-generator">
257
+ <div class="text-4xl mb-3 text-purple-400"><i class="fas fa-image"></i></div>
258
+ <h3 class="font-bold mb-2">Générateur d'Images</h3>
259
+ <p class="text-sm text-purple-300">Créez des visuels à partir de texte</p>
260
+ </button>
261
+
262
+ <button class="service-btn bg-green-900 bg-opacity-50 rounded-lg p-4 flex flex-col items-center text-center hover:bg-green-700 hover:transform hover:scale-105 transition-all duration-300 h-full auto-activate" data-service="data" data-url="https://exemple.com/data-analysis">
263
+ <div class="text-4xl mb-3 text-green-400"><i class="fas fa-chart-line"></i></div>
264
+ <h3 class="font-bold mb-2">Analyse de Données</h3>
265
+ <p class="text-sm text-green-300">Analytique prédictive avancée</p>
266
+ </button>
267
+
268
+ <button class="service-btn bg-red-900 bg-opacity-50 rounded-lg p-4 flex flex-col items-center text-center hover:bg-red-700 hover:transform hover:scale-105 transition-all duration-300 h-full auto-activate" data-service="code" data-url="https://exemple.com/code-generator">
269
+ <div class="text-4xl mb-3 text-red-400"><i class="fas fa-code"></i></div>
270
+ <h3 class="font-bold mb-2">Générateur de Code</h3>
271
+ <p class="text-sm text-red-300">Assistant de programmation automatisé</p>
272
+ </button>
273
+
274
+ <button class="service-btn bg-yellow-900 bg-opacity-50 rounded-lg p-4 flex flex-col items-center text-center hover:bg-yellow-700 hover:transform hover:scale-105 transition-all duration-300 h-full auto-activate" data-service="translation" data-url="https://exemple.com/translation">
275
+ <div class="text-4xl mb-3 text-yellow-400"><i class="fas fa-language"></i></div>
276
+ <h3 class="font-bold mb-2">Traduction</h3>
277
+ <p class="text-sm text-yellow-300">Traduction multilingue en temps réel</p>
278
+ </button>
279
+
280
+ <button class="service-btn bg-pink-900 bg-opacity-50 rounded-lg p-4 flex flex-col items-center text-center hover:bg-pink-700 hover:transform hover:scale-105 transition-all duration-300 h-full auto-activate" data-service="music" data-url="https://exemple.com/music-composer">
281
+ <div class="text-4xl mb-3 text-pink-400"><i class="fas fa-music"></i></div>
282
+ <h3 class="font-bold mb-2">Compositeur Musical</h3>
283
+ <p class="text-sm text-pink-300">Générez des musiques originales</p>
284
+ </button>
285
+
286
+ <button class="service-btn bg-indigo-900 bg-opacity-50 rounded-lg p-4 flex flex-col items-center text-center hover:bg-indigo-700 hover:transform hover:scale-105 transition-all duration-300 h-full auto-activate" data-service="video" data-url="https://exemple.com/video-editor">
287
+ <div class="text-4xl mb-3 text-indigo-400"><i class="fas fa-video"></i></div>
288
+ <h3 class="font-bold mb-2">Éditeur Vidéo</h3>
289
+ <p class="text-sm text-indigo-300">Production vidéo assistée par IA</p>
290
+ </button>
291
+
292
+ <button class="service-btn bg-teal-900 bg-opacity-50 rounded-lg p-4 flex flex-col items-center text-center hover:bg-teal-700 hover:transform hover:scale-105 transition-all duration-300 h-full auto-activate" data-service="neural" data-url="https://exemple.com/neural-network">
293
+ <div class="text-4xl mb-3 text-teal-400"><i class="fas fa-brain"></i></div>
294
+ <h3 class="font-bold mb-2">Réseau Neuronal</h3>
295
+ <p class="text-sm text-teal-300">Modèles d'apprentissage profond</p>
296
+ </button>
297
+ </div>
298
+
299
+ <!-- More services button -->
300
+ <div class="text-center mb-16">
301
+ <button class="px-8 py-3 bg-gradient-to-r from-blue-600 to-purple-600 rounded-full font-bold hover:from-blue-500 hover:to-purple-500 transition-all btn-glow">
302
+ Charger Plus de Services (96,969,688 restants)
303
+ </button>
304
+ </div>
305
+
306
+ <!-- Stats section -->
307
+ <div class="holographic-bg rounded-xl p-8 mb-12 neon-border">
308
+ <h2 class="text-3xl font-bold mb-8 text-center">NexusAI en Chiffres</h2>
309
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-6 text-center">
310
+ <div>
311
+ <div class="text-5xl font-bold text-blue-400 mb-2">96,969,696+</div>
312
+ <div class="text-blue-300">Services IA</div>
313
+ </div>
314
+ <div>
315
+ <div class="text-5xl font-bold text-purple-400 mb-2">24/7</div>
316
+ <div class="text-purple-300">Disponibilité</div>
317
+ </div>
318
+ <div>
319
+ <div class="text-5xl font-bold text-green-400 mb-2">∞</div>
320
+ <div class="text-green-300">Possibilités</div>
321
+ </div>
322
+ <div>
323
+ <div class="text-5xl font-bold text-pink-400 mb-2">0.001s</div>
324
+ <div class="text-pink-300">Temps de Réponse</div>
325
+ </div>
326
+ </div>
327
+ </div>
328
+
329
+ <!-- AI Console -->
330
+ <div class="holographic-bg rounded-xl p-6 mb-12 neon-border">
331
+ <h2 class="text-2xl font-bold mb-4">Console de Commande IA</h2>
332
+ <div class="flex flex-col md:flex-row gap-6">
333
+ <div class="flex-1">
334
+ <div class="terminal h-64 mb-4">
335
+ <div class="terminal-line text-green-400">> Bienvenue dans la Console de Commande NexusAI</div>
336
+ <div class="terminal-line text-white">> Tapez votre commande ou sélectionnez un service ci-dessus</div>
337
+ <div class="terminal-line text-blue-400">> Connecté au cluster de calcul quantique</div>
338
+ <div class="terminal-line text-white blink">_</div>
339
+ </div>
340
+ <div class="flex gap-2">
341
+ <input type="text" placeholder="Entrez une commande IA..." class="flex-1 bg-black bg-opacity-50 border border-blue-500 rounded-lg py-2 px-4 text-white focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
342
+ <button class="bg-blue-600 hover:bg-blue-700 text-white rounded-lg px-4 py-2 btn-glow">
343
+ <i class="fas fa-paper-plane"></i>
344
+ </button>
345
+ </div>
346
+ </div>
347
+ <div class="w-full md:w-64">
348
+ <h3 class="font-bold mb-3">Commandes Rapides</h3>
349
+ <button class="w-full text-left bg-blue-900 bg-opacity-50 hover:bg-blue-700 rounded-lg px-4 py-2 mb-2 transition-all">Analyser données</button>
350
+ <button class="w-full text-left bg-purple-900 bg-opacity-50 hover:bg-purple-700 rounded-lg px-4 py-2 mb-2 transition-all">Générer rapport</button>
351
+ <button class="w-full text-left bg-green-900 bg-opacity-50 hover:bg-green-700 rounded-lg px-4 py-2 mb-2 transition-all">Optimiser système</button>
352
+ <button class="w-full text-left bg-red-900 bg-opacity-50 hover:bg-red-700 rounded-lg px-4 py-2 mb-2 transition-all">Protocole d'urgence</button>
353
+ </div>
354
+ </div>
355
+ </div>
356
+ </main>
357
+
358
+ <!-- Footer -->
359
+ <footer class="text-center py-8 text-blue-300">
360
+ <div class="mb-4">
361
+ <button class="mx-2 hover:text-blue-500 transition-all"><i class="fab fa-twitter"></i></button>
362
+ <button class="mx-2 hover:text-purple-500 transition-all"><i class="fab fa-discord"></i></button>
363
+ <button class="mx-2 hover:text-blue-400 transition-all"><i class="fab fa-linkedin"></i></button>
364
+ <button class="mx-2 hover:text-red-500 transition-all"><i class="fab fa-youtube"></i></button>
365
+ </div>
366
+ <p>© 2023 NexusAI - Le Futur de l'Intelligence Artificielle</p>
367
+ <p class="text-sm mt-2">Propulsé par des Réseaux Neuronaux Quantiques</p>
368
+ </footer>
369
+ </div>
370
+
371
+ <script>
372
+ document.addEventListener('DOMContentLoaded', function() {
373
+ // Activation automatique des boutons
374
+ const serviceButtons = document.querySelectorAll('.service-btn');
375
+
376
+ // Fonction pour ouvrir le service dans une nouvelle page
377
+ function openServicePage(url) {
378
+ // Simuler un chargement avant l'ouverture
379
+ const loadingWindow = window.open('', '_blank');
380
+ loadingWindow.document.write(`
381
+ <!DOCTYPE html>
382
+ <html>
383
+ <head>
384
+ <title>Chargement du Service...</title>
385
+ <style>
386
+ body {
387
+ background-color: #0a0a1a;
388
+ color: #00f0ff;
389
+ font-family: 'Orbitron', sans-serif;
390
+ display: flex;
391
+ justify-content: center;
392
+ align-items: center;
393
+ height: 100vh;
394
+ margin: 0;
395
+ }
396
+ .loader {
397
+ text-align: center;
398
+ }
399
+ .spinner {
400
+ border: 5px solid rgba(0, 240, 255, 0.3);
401
+ border-radius: 50%;
402
+ border-top: 5px solid #00f0ff;
403
+ width: 50px;
404
+ height: 50px;
405
+ animation: spin 1s linear infinite;
406
+ margin: 0 auto 20px;
407
+ }
408
+ @keyframes spin {
409
+ 0% { transform: rotate(0deg); }
410
+ 100% { transform: rotate(360deg); }
411
+ }
412
+ </style>
413
+ </head>
414
+ <body>
415
+ <div class="loader">
416
+ <div class="spinner"></div>
417
+ <h2>Initialisation du Service IA...</h2>
418
+ <p>Connexion au réseau quantique</p>
419
+ </div>
420
+ <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/nexusia" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
421
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ Creer le plus puissant plateforme intéligence artificiel , avec plus de 96969696 bouton de toutes services en automatique une fois cliquer sur chaque bouton sa s'ouvre automatiquement et vous pouver utiliser les bouton pour chaque service en automatique , avec une tres belle interfaces tres animé et tres atractif du futiriste
2
+ ACTIVER CHAQUE BOUTON EN AUTOMATIQUE ET OUVRER CHAQUE BOUTON CLIQUER DANS UNE NOUVEL PAGE POUR UTILISER LE SERVICE CHOISIE