docto41 commited on
Commit
817dac7
·
verified ·
1 Parent(s): 04a5067

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +503 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Nex Ia
3
- emoji: 🦀
4
- colorFrom: gray
5
- colorTo: green
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: nex-ia
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: pink
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,503 @@
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 - Créateur de Code Web 10000x</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
+ @keyframes float {
11
+ 0%, 100% { transform: translateY(0); }
12
+ 50% { transform: translateY(-20px); }
13
+ }
14
+ @keyframes pulse {
15
+ 0%, 100% { opacity: 1; }
16
+ 50% { opacity: 0.5; }
17
+ }
18
+ @keyframes wave {
19
+ 0% { transform: rotate(0deg); }
20
+ 10% { transform: rotate(14deg); }
21
+ 20% { transform: rotate(-8deg); }
22
+ 30% { transform: rotate(14deg); }
23
+ 40% { transform: rotate(-4deg); }
24
+ 50% { transform: rotate(10deg); }
25
+ 60% { transform: rotate(0deg); }
26
+ 100% { transform: rotate(0deg); }
27
+ }
28
+ .floating {
29
+ animation: float 6s ease-in-out infinite;
30
+ }
31
+ .pulse {
32
+ animation: pulse 2s infinite;
33
+ }
34
+ .wave {
35
+ animation: wave 2.5s infinite;
36
+ transform-origin: 70% 70%;
37
+ display: inline-block;
38
+ }
39
+ .gradient-bg {
40
+ background: linear-gradient(135deg, #6e8efb, #a777e3);
41
+ }
42
+ .code-bg {
43
+ background: #1e293b;
44
+ }
45
+ .neon-text {
46
+ text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #0073e6, 0 0 20px #0073e6;
47
+ }
48
+ .glow {
49
+ box-shadow: 0 0 15px rgba(167, 119, 227, 0.7);
50
+ }
51
+ .terminal-cursor {
52
+ animation: blink 1s step-end infinite;
53
+ }
54
+ @keyframes blink {
55
+ from, to { opacity: 1; }
56
+ 50% { opacity: 0; }
57
+ }
58
+ </style>
59
+ </head>
60
+ <body class="gradient-bg min-h-screen text-white font-sans overflow-x-hidden">
61
+ <!-- Particules flottantes -->
62
+ <div class="fixed inset-0 overflow-hidden pointer-events-none">
63
+ <div class="absolute top-1/4 left-1/4 w-3 h-3 bg-white rounded-full opacity-20" style="animation: float 8s ease-in-out infinite;"></div>
64
+ <div class="absolute top-1/3 right-1/3 w-4 h-4 bg-purple-200 rounded-full opacity-30" style="animation: float 7s ease-in-out infinite 2s;"></div>
65
+ <div class="absolute bottom-1/4 left-2/3 w-2 h-2 bg-blue-200 rounded-full opacity-25" style="animation: float 9s ease-in-out infinite 1s;"></div>
66
+ <div class="absolute bottom-1/3 right-1/4 w-3 h-3 bg-indigo-200 rounded-full opacity-20" style="animation: float 6s ease-in-out infinite 3s;"></div>
67
+ </div>
68
+
69
+ <!-- Header -->
70
+ <header class="container mx-auto px-6 py-8">
71
+ <div class="flex justify-between items-center">
72
+ <div class="flex items-center space-x-2">
73
+ <div class="w-10 h-10 bg-white rounded-full flex items-center justify-center glow">
74
+ <i class="fas fa-robot text-purple-600 text-xl"></i>
75
+ </div>
76
+ <h1 class="text-2xl font-bold neon-text">Nexus<span class="text-yellow-300">AI</span></h1>
77
+ </div>
78
+ <nav class="hidden md:flex space-x-8">
79
+ <a href="#" class="hover:text-yellow-300 transition">Accueil</a>
80
+ <a href="#" class="hover:text-yellow-300 transition">Fonctionnalités</a>
81
+ <a href="#" class="hover:text-yellow-300 transition">Assistants</a>
82
+ <a href="#" class="hover:text-yellow-300 transition">Documentation</a>
83
+ </nav>
84
+ <button class="md:hidden text-2xl">
85
+ <i class="fas fa-bars"></i>
86
+ </button>
87
+ </div>
88
+ </header>
89
+
90
+ <!-- Hero Section -->
91
+ <section class="container mx-auto px-6 py-16 text-center">
92
+ <div class="max-w-4xl mx-auto">
93
+ <h1 class="text-5xl md:text-6xl font-bold mb-6 leading-tight">
94
+ <span class="neon-text">L'IA Créatrice de Code</span>
95
+ <span class="text-yellow-300 wave">10,000x</span> plus puissante
96
+ </h1>
97
+ <p class="text-xl md:text-2xl mb-10 opacity-90">
98
+ Avec 2000 assistants virtuels spécialisés, générez du code web parfait en quelques secondes.
99
+ <br>L'intelligence artificielle la plus avancée pour les développeurs.
100
+ </p>
101
+ <div class="flex flex-col md:flex-row justify-center gap-4">
102
+ <button class="bg-white text-purple-600 hover:bg-purple-100 font-bold py-3 px-8 rounded-full transition transform hover:scale-105 glow">
103
+ Essayer Gratuitement
104
+ </button>
105
+ <button class="bg-transparent border-2 border-white hover:bg-white hover:text-purple-600 font-bold py-3 px-8 rounded-full transition transform hover:scale-105">
106
+ Voir la Démo
107
+ </button>
108
+ </div>
109
+ </div>
110
+ </section>
111
+
112
+ <!-- AI Avatar -->
113
+ <div class="flex justify-center mb-16">
114
+ <div class="relative floating">
115
+ <div class="w-48 h-48 md:w-64 md:h-64 bg-white rounded-full flex items-center justify-center glow">
116
+ <img src="https://cdn-icons-png.flaticon.com/512/4712/4712035.png" alt="AI Avatar" class="w-3/4">
117
+ </div>
118
+ <div class="absolute -bottom-5 left-1/2 transform -translate-x-1/2 bg-purple-500 text-xs py-1 px-3 rounded-full">
119
+ <span class="pulse">En ligne</span> • 2000 assistants actifs
120
+ </div>
121
+ </div>
122
+ </div>
123
+
124
+ <!-- Features -->
125
+ <section class="container mx-auto px-6 py-16">
126
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-16">Fonctionnalités <span class="text-yellow-300">Exceptionnelles</span></h2>
127
+
128
+ <div class="grid md:grid-cols-3 gap-8">
129
+ <!-- Feature 1 -->
130
+ <div class="bg-white bg-opacity-10 backdrop-blur-sm rounded-xl p-8 hover:glow transition">
131
+ <div class="w-16 h-16 bg-purple-500 rounded-full flex items-center justify-center mb-6">
132
+ <i class="fas fa-bolt text-2xl"></i>
133
+ </div>
134
+ <h3 class="text-xl font-bold mb-3">Vitesse 10,000x</h3>
135
+ <p class="opacity-80">Génération de code ultra-rapide grâce à notre réseau de 2000 assistants IA travaillant en parallèle.</p>
136
+ </div>
137
+
138
+ <!-- Feature 2 -->
139
+ <div class="bg-white bg-opacity-10 backdrop-blur-sm rounded-xl p-8 hover:glow transition">
140
+ <div class="w-16 h-16 bg-blue-500 rounded-full flex items-center justify-center mb-6">
141
+ <i class="fas fa-code text-2xl"></i>
142
+ </div>
143
+ <h3 class="text-xl font-bold mb-3">Code Parfait</h3>
144
+ <p class="opacity-80">Code optimisé, sécurisé et conforme aux meilleures pratiques du développement web.</p>
145
+ </div>
146
+
147
+ <!-- Feature 3 -->
148
+ <div class="bg-white bg-opacity-10 backdrop-blur-sm rounded-xl p-8 hover:glow transition">
149
+ <div class="w-16 h-16 bg-green-500 rounded-full flex items-center justify-center mb-6">
150
+ <i class="fas fa-brain text-2xl"></i>
151
+ </div>
152
+ <h3 class="text-xl font-bold mb-3">Apprentissage Continu</h3>
153
+ <p class="opacity-80">Notre IA s'améliore constamment en analysant les dernières tendances du développement.</p>
154
+ </div>
155
+ </div>
156
+ </section>
157
+
158
+ <!-- Code Demo -->
159
+ <section class="container mx-auto px-6 py-16">
160
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-8">Essayez <span class="text-yellow-300">NexusAI</span></h2>
161
+ <p class="text-center mb-12 max-w-2xl mx-auto opacity-90">
162
+ Décrivez votre projet et nos 2000 assistants IA généreront le code parfait pour vous.
163
+ </p>
164
+
165
+ <div class="max-w-4xl mx-auto">
166
+ <div class="grid md:grid-cols-2 gap-8">
167
+ <!-- Input -->
168
+ <div>
169
+ <div class="bg-white bg-opacity-10 backdrop-blur-sm rounded-xl p-6 h-full">
170
+ <h3 class="text-lg font-bold mb-4">Votre Description</h3>
171
+ <textarea class="w-full bg-gray-800 bg-opacity-50 rounded-lg p-4 h-64 focus:outline-none focus:ring-2 focus:ring-purple-500" placeholder="Décrivez votre site web ou application..."></textarea>
172
+ <button class="mt-4 bg-purple-600 hover:bg-purple-700 text-white font-bold py-2 px-6 rounded-full transition transform hover:scale-105 w-full">
173
+ Générer le Code <i class="fas fa-magic ml-2"></i>
174
+ </button>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Output -->
179
+ <div>
180
+ <div class="code-bg rounded-xl overflow-hidden h-full">
181
+ <div class="bg-gray-800 px-4 py-2 flex items-center">
182
+ <div class="flex space-x-2">
183
+ <div class="w-3 h-3 bg-red-500 rounded-full"></div>
184
+ <div class="w-3 h-3 bg-yellow-500 rounded-full"></div>
185
+ <div class="w-3 h-3 bg-green-500 rounded-full"></div>
186
+ </div>
187
+ <div class="ml-4 text-sm opacity-70">output.html</div>
188
+ </div>
189
+ <div class="p-4 font-mono text-sm overflow-auto h-64">
190
+ <div class="terminal-cursor">
191
+ <span class="text-green-400">$</span> <span class="text-blue-400">NexusAI</span> processing request...<br>
192
+ <span class="text-green-400">$</span> Engaging <span class="text-purple-400">2000</span> specialized assistants<br>
193
+ <span class="text-green-400">$</span> Analyzing best practices...<br>
194
+ <span class="text-green-400">$</span> Generating optimized code structure<br>
195
+ <span class="text-green-400">$</span> <span class="text-yellow-300">Code generation complete!</span><br><br>
196
+ <span class="text-gray-400">&lt;!DOCTYPE html&gt;<br>
197
+ &lt;html lang="fr"&gt;<br>
198
+ &lt;head&gt;<br>
199
+ &nbsp;&nbsp;&lt;meta charset="UTF-8"&gt;<br>
200
+ &nbsp;&nbsp;&lt;title&gt;Votre Site Parfait&lt;/title&gt;<br>
201
+ &nbsp;&nbsp;&lt;!-- Code optimisé généré par NexusAI --&gt;<br>
202
+ &lt;/head&gt;<br>
203
+ &lt;body&gt;<br>
204
+ &nbsp;&nbsp;&lt;!-- Votre contenu ici --&gt;<br>
205
+ &lt;/body&gt;<br>
206
+ &lt;/html&gt;</span>
207
+ </div>
208
+ </div>
209
+ </div>
210
+ </div>
211
+ </div>
212
+ </div>
213
+ </section>
214
+
215
+ <!-- Assistants -->
216
+ <section class="container mx-auto px-6 py-16">
217
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-8">Nos <span class="text-yellow-300">2000 Assistants</span> Spécialisés</h2>
218
+
219
+ <div class="grid sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6 mt-12">
220
+ <!-- Assistant 1 -->
221
+ <div class="bg-white bg-opacity-5 hover:bg-opacity-10 rounded-xl p-6 transition group">
222
+ <div class="w-16 h-16 bg-indigo-500 rounded-full flex items-center justify-center mb-4 group-hover:rotate-12 transition">
223
+ <i class="fas fa-laptop-code text-2xl"></i>
224
+ </div>
225
+ <h3 class="text-lg font-bold mb-2">HTML5 Expert</h3>
226
+ <p class="text-sm opacity-70">Maîtrise parfaite du HTML sémantique moderne.</p>
227
+ <div class="mt-3 flex flex-wrap gap-2">
228
+ <span class="text-xs bg-indigo-900 bg-opacity-50 px-2 py-1 rounded">Structure</span>
229
+ <span class="text-xs bg-indigo-900 bg-opacity-50 px-2 py-1 rounded">SEO</span>
230
+ <span class="text-xs bg-indigo-900 bg-opacity-50 px-2 py-1 rounded">Accessibilité</span>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- Assistant 2 -->
235
+ <div class="bg-white bg-opacity-5 hover:bg-opacity-10 rounded-xl p-6 transition group">
236
+ <div class="w-16 h-16 bg-blue-500 rounded-full flex items-center justify-center mb-4 group-hover:rotate-12 transition">
237
+ <i class="fab fa-css3-alt text-2xl"></i>
238
+ </div>
239
+ <h3 class="text-lg font-bold mb-2">CSS Architect</h3>
240
+ <p class="text-sm opacity-70">Création de designs responsive et élégants.</p>
241
+ <div class="mt-3 flex flex-wrap gap-2">
242
+ <span class="text-xs bg-blue-900 bg-opacity-50 px-2 py-1 rounded">Flexbox</span>
243
+ <span class="text-xs bg-blue-900 bg-opacity-50 px-2 py-1 rounded">Grid</span>
244
+ <span class="text-xs bg-blue-900 bg-opacity-50 px-2 py-1 rounded">Animations</span>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Assistant 3 -->
249
+ <div class="bg-white bg-opacity-5 hover:bg-opacity-10 rounded-xl p-6 transition group">
250
+ <div class="w-16 h-16 bg-yellow-500 rounded-full flex items-center justify-center mb-4 group-hover:rotate-12 transition">
251
+ <i class="fab fa-js text-2xl"></i>
252
+ </div>
253
+ <h3 class="text-lg font-bold mb-2">JavaScript Genius</h3>
254
+ <p class="text-sm opacity-70">Logique JavaScript propre et performante.</p>
255
+ <div class="mt-3 flex flex-wrap gap-2">
256
+ <span class="text-xs bg-yellow-900 bg-opacity-50 px-2 py-1 rounded">ES6+</span>
257
+ <span class="text-xs bg-yellow-900 bg-opacity-50 px-2 py-1 rounded">Frameworks</span>
258
+ <span class="text-xs bg-yellow-900 bg-opacity-50 px-2 py-1 rounded">Performance</span>
259
+ </div>
260
+ </div>
261
+
262
+ <!-- Assistant 4 -->
263
+ <div class="bg-white bg-opacity-5 hover:bg-opacity-10 rounded-xl p-6 transition group">
264
+ <div class="w-16 h-16 bg-purple-500 rounded-full flex items-center justify-center mb-4 group-hover:rotate-12 transition">
265
+ <i class="fab fa-react text-2xl"></i>
266
+ </div>
267
+ <h3 class="text-lg font-bold mb-2">React Specialist</h3>
268
+ <p class="text-sm opacity-70">Développement de composants React optimisés.</p>
269
+ <div class="mt-3 flex flex-wrap gap-2">
270
+ <span class="text-xs bg-purple-900 bg-opacity-50 px-2 py-1 rounded">Hooks</span>
271
+ <span class="text-xs bg-purple-900 bg-opacity-50 px-2 py-1 rounded">Context</span>
272
+ <span class="text-xs bg-purple-900 bg-opacity-50 px-2 py-1 rounded">Next.js</span>
273
+ </div>
274
+ </div>
275
+ </div>
276
+
277
+ <div class="text-center mt-12">
278
+ <button class="bg-transparent border-2 border-white hover:bg-white hover:text-purple-600 font-bold py-3 px-8 rounded-full transition transform hover:scale-105">
279
+ Voir tous les 2000 assistants <i class="fas fa-arrow-right ml-2"></i>
280
+ </button>
281
+ </div>
282
+ </section>
283
+
284
+ <!-- Testimonials -->
285
+ <section class="container mx-auto px-6 py-16">
286
+ <h2 class="text-3xl md:text-4xl font-bold text-center mb-16">Ils utilisent <span class="text-yellow-300">NexusAI</span></h2>
287
+
288
+ <div class="grid md:grid-cols-3 gap-8 max-w-6xl mx-auto">
289
+ <!-- Testimonial 1 -->
290
+ <div class="bg-white bg-opacity-10 backdrop-blur-sm rounded-xl p-8">
291
+ <div class="flex items-center mb-6">
292
+ <div class="w-12 h-12 bg-purple-500 rounded-full flex items-center justify-center mr-4">
293
+ <span class="text-xl font-bold">JD</span>
294
+ </div>
295
+ <div>
296
+ <h4 class="font-bold">Jean Dupont</h4>
297
+ <p class="text-sm opacity-70">CTO, TechStart</p>
298
+ </div>
299
+ </div>
300
+ <p class="opacity-90 italic">"NexusAI a révolutionné notre flux de travail. Ce qui prenait des jours est maintenant fait en minutes avec une qualité exceptionnelle."</p>
301
+ <div class="mt-4 text-yellow-300">
302
+ <i class="fas fa-star"></i>
303
+ <i class="fas fa-star"></i>
304
+ <i class="fas fa-star"></i>
305
+ <i class="fas fa-star"></i>
306
+ <i class="fas fa-star"></i>
307
+ </div>
308
+ </div>
309
+
310
+ <!-- Testimonial 2 -->
311
+ <div class="bg-white bg-opacity-10 backdrop-blur-sm rounded-xl p-8">
312
+ <div class="flex items-center mb-6">
313
+ <div class="w-12 h-12 bg-blue-500 rounded-full flex items-center justify-center mr-4">
314
+ <span class="text-xl font-bold">MS</span>
315
+ </div>
316
+ <div>
317
+ <h4 class="font-bold">Marie Sanchez</h4>
318
+ <p class="text-sm opacity-70">Développeuse Frontend</p>
319
+ </div>
320
+ </div>
321
+ <p class="opacity-90 italic">"Les 2000 assistants de NexusAI couvrent tous les aspects du développement web. Je n'ai plus besoin de passer des heures sur Stack Overflow!"</p>
322
+ <div class="mt-4 text-yellow-300">
323
+ <i class="fas fa-star"></i>
324
+ <i class="fas fa-star"></i>
325
+ <i class="fas fa-star"></i>
326
+ <i class="fas fa-star"></i>
327
+ <i class="fas fa-star"></i>
328
+ </div>
329
+ </div>
330
+
331
+ <!-- Testimonial 3 -->
332
+ <div class="bg-white bg-opacity-10 backdrop-blur-sm rounded-xl p-8">
333
+ <div class="flex items-center mb-6">
334
+ <div class="w-12 h-12 bg-green-500 rounded-full flex items-center justify-center mr-4">
335
+ <span class="text-xl font-bold">TP</span>
336
+ </div>
337
+ <div>
338
+ <h4 class="font-bold">Thomas Petit</h4>
339
+ <p class="text-sm opacity-70">Freelance Fullstack</p>
340
+ </div>
341
+ </div>
342
+ <p class="opacity-90 italic">"La puissance 10,000x n'est pas un slogan. J'ai réduit mon temps de développement par 10 tout en améliorant la qualité de mon code."</p>
343
+ <div class="mt-4 text-yellow-300">
344
+ <i class="fas fa-star"></i>
345
+ <i class="fas fa-star"></i>
346
+ <i class="fas fa-star"></i>
347
+ <i class="fas fa-star"></i>
348
+ <i class="fas fa-star-half-alt"></i>
349
+ </div>
350
+ </div>
351
+ </div>
352
+ </section>
353
+
354
+ <!-- CTA -->
355
+ <section class="container mx-auto px-6 py-24 text-center">
356
+ <div class="max-w-4xl mx-auto bg-white bg-opacity-10 backdrop-blur-sm rounded-2xl p-12 glow">
357
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Prêt à <span class="text-yellow-300">révolutionner</span> votre flux de travail?</h2>
358
+ <p class="text-xl mb-8 opacity-90">Rejoignez des milliers de développeurs qui utilisent déjà NexusAI pour créer du code parfait en un temps record.</p>
359
+ <button class="bg-purple-600 hover:bg-purple-700 text-white font-bold py-4 px-12 rounded-full transition transform hover:scale-105 text-lg">
360
+ Commencer Maintenant <i class="fas fa-rocket ml-2"></i>
361
+ </button>
362
+ </div>
363
+ </section>
364
+
365
+ <!-- Footer -->
366
+ <footer class="bg-gray-900 bg-opacity-50 py-12">
367
+ <div class="container mx-auto px-6">
368
+ <div class="grid md:grid-cols-4 gap-8">
369
+ <div>
370
+ <div class="flex items-center space-x-2 mb-4">
371
+ <div class="w-8 h-8 bg-white rounded-full flex items-center justify-center">
372
+ <i class="fas fa-robot text-purple-600"></i>
373
+ </div>
374
+ <h3 class="text-xl font-bold">Nexus<span class="text-yellow-300">AI</span></h3>
375
+ </div>
376
+ <p class="opacity-70 text-sm">L'IA créatrice de code web la plus puissante avec 2000 assistants spécialisés.</p>
377
+ </div>
378
+
379
+ <div>
380
+ <h4 class="font-bold mb-4">Ressources</h4>
381
+ <ul class="space-y-2">
382
+ <li><a href="#" class="opacity-70 hover:opacity-100 transition">Documentation</a></li>
383
+ <li><a href="#" class="opacity-70 hover:opacity-100 transition">Tutoriels</a></li>
384
+ <li><a href="#" class="opacity-70 hover:opacity-100 transition">API</a></li>
385
+ <li><a href="#" class="opacity-70 hover:opacity-100 transition">Blog</a></li>
386
+ </ul>
387
+ </div>
388
+
389
+ <div>
390
+ <h4 class="font-bold mb-4">Entreprise</h4>
391
+ <ul class="space-y-2">
392
+ <li><a href="#" class="opacity-70 hover:opacity-100 transition">À propos</a></li>
393
+ <li><a href="#" class="opacity-70 hover:opacity-100 transition">Carrières</a></li>
394
+ <li><a href="#" class="opacity-70 hover:opacity-100 transition">Partenariats</a></li>
395
+ <li><a href="#" class="opacity-70 hover:opacity-100 transition">Contact</a></li>
396
+ </ul>
397
+ </div>
398
+
399
+ <div>
400
+ <h4 class="font-bold mb-4">Suivez-nous</h4>
401
+ <div class="flex space-x-4">
402
+ <a href="#" class="w-10 h-10 bg-white bg-opacity-10 hover:bg-opacity-20 rounded-full flex items-center justify-center transition">
403
+ <i class="fab fa-twitter"></i>
404
+ </a>
405
+ <a href="#" class="w-10 h-10 bg-white bg-opacity-10 hover:bg-opacity-20 rounded-full flex items-center justify-center transition">
406
+ <i class="fab fa-github"></i>
407
+ </a>
408
+ <a href="#" class="w-10 h-10 bg-white bg-opacity-10 hover:bg-opacity-20 rounded-full flex items-center justify-center transition">
409
+ <i class="fab fa-linkedin-in"></i>
410
+ </a>
411
+ <a href="#" class="w-10 h-10 bg-white bg-opacity-10 hover:bg-opacity-20 rounded-full flex items-center justify-center transition">
412
+ <i class="fab fa-discord"></i>
413
+ </a>
414
+ </div>
415
+ <div class="mt-6">
416
+ <p class="text-sm opacity-70">Abonnez-vous à notre newsletter</p>
417
+ <div class="flex mt-2">
418
+ <input type="email" placeholder="Votre email" class="bg-gray-800 text-white px-4 py-2 rounded-l focus:outline-none w-full">
419
+ <button class="bg-purple-600 hover:bg-purple-700 px-4 rounded-r">
420
+ <i class="fas fa-paper-plane"></i>
421
+ </button>
422
+ </div>
423
+ </div>
424
+ </div>
425
+ </div>
426
+
427
+ <div class="border-t border-gray-700 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
428
+ <p class="text-sm opacity-70">© 2023 NexusAI. Tous droits réservés.</p>
429
+ <div class="flex space-x-6 mt-4 md:mt-0">
430
+ <a href="#" class="text-sm opacity-70 hover:opacity-100 transition">Conditions</a>
431
+ <a href="#" class="text-sm opacity-70 hover:opacity-100 transition">Confidentialité</a>
432
+ <a href="#" class="text-sm opacity-70 hover:opacity-100 transition">Cookies</a>
433
+ </div>
434
+ </div>
435
+ </div>
436
+ </footer>
437
+
438
+ <!-- Floating Action Button -->
439
+ <div class="fixed bottom-8 right-8">
440
+ <button class="w-16 h-16 bg-purple-600 hover:bg-purple-700 rounded-full flex items-center justify-center text-2xl glow transform hover:scale-110 transition">
441
+ <i class="fas fa-comment-dots"></i>
442
+ </button>
443
+ </div>
444
+
445
+ <script>
446
+ // Animation pour les assistants
447
+ document.addEventListener('DOMContentLoaded', function() {
448
+ const assistants = document.querySelectorAll('.bg-white.bg-opacity-5');
449
+
450
+ assistants.forEach(assistant => {
451
+ assistant.addEventListener('mouseenter', () => {
452
+ const icon = assistant.querySelector('div:first-child');
453
+ icon.classList.add('animate-bounce');
454
+ });
455
+
456
+ assistant.addEventListener('mouseleave', () => {
457
+ const icon = assistant.querySelector('div:first-child');
458
+ icon.classList.remove('animate-bounce');
459
+ });
460
+ });
461
+
462
+ // Simulation de génération de code
463
+ const generateBtn = document.querySelector('button:contains("Générer le Code")');
464
+ if(generateBtn) {
465
+ generateBtn.addEventListener('click', function() {
466
+ const terminal = document.querySelector('.code-bg .font-mono');
467
+ if(terminal) {
468
+ terminal.innerHTML = `
469
+ <div class="terminal-cursor">
470
+ <span class="text-green-400">$</span> <span class="text-blue-400">NexusAI</span> processing request...<br>
471
+ <span class="text-green-400">$</span> Engaging <span class="text-purple-400">2000</span> specialized assistants<br>
472
+ <span class="text-green-400">$</span> Analyzing best practices...<br>
473
+ <span class="text-green-400">$</span> Generating optimized code structure<br>
474
+ <span class="text-green-400">$</span> <span class="text-yellow-300">Code generation complete!</span><br><br>
475
+ <span class="text-gray-400">&lt;!DOCTYPE html&gt;<br>
476
+ &lt;html lang="fr"&gt;<br>
477
+ &lt;head&gt;<br>
478
+ &nbsp;&nbsp;&lt;meta charset="UTF-8"&gt;<br>
479
+ &nbsp;&nbsp;&lt;title&gt;Votre Site Parfait&lt;/title&gt;<br>
480
+ &nbsp;&nbsp;&lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt;<br>
481
+ &nbsp;&nbsp;&lt;link href="https://cdn.tailwindcss.com" rel="stylesheet"&gt;<br>
482
+ &lt;/head&gt;<br>
483
+ &lt;body class="min-h-screen bg-gray-100"&gt;<br>
484
+ &nbsp;&nbsp;&lt;header class="bg-white shadow"&gt;<br>
485
+ &nbsp;&nbsp;&nbsp;&nbsp;&lt;!-- Votre header ici --&gt;<br>
486
+ &nbsp;&nbsp;&lt;/header&gt;<br>
487
+ &nbsp;&nbsp;&lt;main&gt;<br>
488
+ &nbsp;&nbsp;&nbsp;&nbsp;&lt;!-- Votre contenu principal ici --&gt;<br>
489
+ &nbsp;&nbsp;&lt;/main&gt;<br>
490
+ &nbsp;&nbsp;&lt;footer class="bg-gray-800 text-white py-8"&gt;<br>
491
+ &nbsp;&nbsp;&nbsp;&nbsp;&lt;!-- Votre footer ici --&gt;<br>
492
+ &nbsp;&nbsp;&lt;/footer&gt;<br>
493
+ &lt;/body&gt;<br>
494
+ &lt;/html&gt;</span>
495
+ </div>
496
+ `;
497
+ }
498
+ });
499
+ }
500
+ });
501
+ </script>
502
+ <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/nex-ia" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
503
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ creer moi monpopre inteligence artificiel avec ses 2000 assitant createur de code web10000 fois puissant et intligence avev une belle interfave tres animé