docto41 commited on
Commit
46775cd
·
verified ·
1 Parent(s): f2f55e0

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +579 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ia Bvl
3
- emoji: 🐠
4
- colorFrom: pink
5
- colorTo: blue
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: ia-bvl
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: green
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,579 @@
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>IA BVL - Générateur de Sites Web Intelligents</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, #a777e3);
12
+ }
13
+ .ai-response {
14
+ border-left: 4px solid #a777e3;
15
+ transition: all 0.3s ease;
16
+ }
17
+ .ai-response:hover {
18
+ transform: translateX(5px);
19
+ }
20
+ .pulse-animation {
21
+ animation: pulse 2s infinite;
22
+ }
23
+ @keyframes pulse {
24
+ 0% { transform: scale(1); }
25
+ 50% { transform: scale(1.05); }
26
+ 100% { transform: scale(1); }
27
+ }
28
+ .floating {
29
+ animation: floating 3s ease-in-out infinite;
30
+ }
31
+ @keyframes floating {
32
+ 0% { transform: translateY(0px); }
33
+ 50% { transform: translateY(-10px); }
34
+ 100% { transform: translateY(0px); }
35
+ }
36
+ </style>
37
+ </head>
38
+ <body class="bg-gray-50 min-h-screen">
39
+ <!-- Header -->
40
+ <header class="gradient-bg text-white shadow-lg">
41
+ <div class="container mx-auto px-4 py-6">
42
+ <div class="flex justify-between items-center">
43
+ <div class="flex items-center space-x-2">
44
+ <i class="fas fa-robot text-3xl"></i>
45
+ <h1 class="text-2xl font-bold">IA BVL</h1>
46
+ </div>
47
+ <nav>
48
+ <ul class="flex space-x-6">
49
+ <li><a href="#" class="hover:text-gray-200 transition">Accueil</a></li>
50
+ <li><a href="#" class="hover:text-gray-200 transition">Fonctionnalités</a></li>
51
+ <li><a href="#" class="hover:text-gray-200 transition">Tarifs</a></li>
52
+ <li><a href="#" class="hover:text-gray-200 transition">Contact</a></li>
53
+ </ul>
54
+ </nav>
55
+ <button class="bg-white text-purple-600 px-4 py-2 rounded-full font-semibold hover:bg-gray-100 transition">
56
+ Essayer gratuitement
57
+ </button>
58
+ </div>
59
+ </div>
60
+ </header>
61
+
62
+ <!-- Hero Section -->
63
+ <section class="gradient-bg text-white py-20">
64
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
65
+ <div class="md:w-1/2 mb-10 md:mb-0">
66
+ <h2 class="text-4xl md:text-5xl font-bold mb-6">Créez des sites web en quelques secondes avec l'IA BVL</h2>
67
+ <p class="text-xl mb-8">Notre intelligence artificielle avancée génère des sites web complets et personnalisés en fonction de vos besoins.</p>
68
+ <div class="flex space-x-4">
69
+ <button class="bg-white text-purple-600 px-6 py-3 rounded-full font-bold hover:bg-gray-100 transition pulse-animation">
70
+ Commencer maintenant <i class="fas fa-arrow-right ml-2"></i>
71
+ </button>
72
+ <button class="border-2 border-white text-white px-6 py-3 rounded-full font-bold hover:bg-white hover:text-purple-600 transition">
73
+ Voir la démo
74
+ </button>
75
+ </div>
76
+ </div>
77
+ <div class="md:w-1/2 flex justify-center">
78
+ <div class="relative floating">
79
+ <div class="absolute -inset-4 bg-purple-400 rounded-2xl opacity-20 blur"></div>
80
+ <div class="relative bg-white rounded-2xl shadow-xl p-4 w-80 h-96">
81
+ <div class="flex space-x-2 mb-4">
82
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
83
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
84
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
85
+ </div>
86
+ <div class="bg-gray-100 rounded-lg p-4 h-80 overflow-y-auto">
87
+ <div class="ai-response bg-white p-4 rounded-lg mb-4 shadow-sm">
88
+ <p class="font-semibold text-purple-600">IA BVL:</p>
89
+ <p>Bonjour! Décrivez-moi le site web que vous souhaitez créer et je le générerai pour vous.</p>
90
+ </div>
91
+ <div class="bg-gray-200 p-4 rounded-lg mb-4 shadow-sm">
92
+ <p class="font-semibold text-gray-700">Vous:</p>
93
+ <p>Je veux un site vitrine pour mon restaurant avec menu, galerie photos et formulaire de réservation.</p>
94
+ </div>
95
+ <div class="ai-response bg-white p-4 rounded-lg shadow-sm">
96
+ <p class="font-semibold text-purple-600">IA BVL:</p>
97
+ <p>J'ai créé votre site! Voici le lien: <a href="#" class="text-purple-600 underline">restaurant-exemple.bvl.com</a></p>
98
+ </div>
99
+ </div>
100
+ </div>
101
+ </div>
102
+ </div>
103
+ </div>
104
+ </section>
105
+
106
+ <!-- Generator Section -->
107
+ <section class="py-16 bg-white">
108
+ <div class="container mx-auto px-4">
109
+ <h2 class="text-3xl font-bold text-center mb-12">Générateur de Site Web IA</h2>
110
+
111
+ <div class="max-w-4xl mx-auto bg-gray-50 rounded-xl shadow-lg overflow-hidden">
112
+ <div class="p-6 border-b border-gray-200">
113
+ <h3 class="text-xl font-semibold text-gray-800">Décrivez votre projet</h3>
114
+ <p class="text-gray-600">Plus votre description est précise, meilleur sera le résultat.</p>
115
+ </div>
116
+
117
+ <div class="p-6">
118
+ <div class="mb-6">
119
+ <label for="project-type" class="block text-sm font-medium text-gray-700 mb-2">Type de projet</label>
120
+ <select id="project-type" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-500 focus:border-purple-500">
121
+ <option value="">Sélectionnez un type</option>
122
+ <option value="portfolio">Portfolio</option>
123
+ <option value="ecommerce">Boutique en ligne</option>
124
+ <option value="blog">Blog</option>
125
+ <option value="business">Site vitrine</option>
126
+ <option value="landing">Page de destination</option>
127
+ <option value="other">Autre</option>
128
+ </select>
129
+ </div>
130
+
131
+ <div class="mb-6">
132
+ <label for="project-description" class="block text-sm font-medium text-gray-700 mb-2">Description détaillée</label>
133
+ <textarea id="project-description" rows="6" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-500 focus:border-purple-500" placeholder="Ex: Je veux un site pour mon agence immobilière avec une galerie de propriétés, un formulaire de contact et une carte interactive..."></textarea>
134
+ </div>
135
+
136
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
137
+ <div>
138
+ <label for="style-preference" class="block text-sm font-medium text-gray-700 mb-2">Style préféré</label>
139
+ <select id="style-preference" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-500 focus:border-purple-500">
140
+ <option value="">Choisissez un style</option>
141
+ <option value="modern">Moderne</option>
142
+ <option value="minimal">Minimaliste</option>
143
+ <option value="vintage">Vintage</option>
144
+ <option value="professional">Professionnel</option>
145
+ <option value="creative">Créatif</option>
146
+ </select>
147
+ </div>
148
+
149
+ <div>
150
+ <label for="color-scheme" class="block text-sm font-medium text-gray-700 mb-2">Schéma de couleurs</label>
151
+ <select id="color-scheme" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-purple-500 focus:border-purple-500">
152
+ <option value="">Choisissez une palette</option>
153
+ <option value="purple">Violet/Blanc</option>
154
+ <option value="blue">Bleu/Blanc</option>
155
+ <option value="dark">Mode sombre</option>
156
+ <option value="light">Mode clair</option>
157
+ <option value="custom">Personnalisé</option>
158
+ </select>
159
+ </div>
160
+ </div>
161
+
162
+ <div class="flex items-center mb-6">
163
+ <input id="responsive-design" type="checkbox" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded" checked>
164
+ <label for="responsive-design" class="ml-2 block text-sm text-gray-700">Design responsive (adapté mobile)</label>
165
+ </div>
166
+
167
+ <button id="generate-btn" class="w-full bg-purple-600 text-white py-4 px-6 rounded-lg font-bold hover:bg-purple-700 transition flex items-center justify-center">
168
+ <i class="fas fa-magic mr-2"></i> Générer mon site web
169
+ </button>
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </section>
174
+
175
+ <!-- Features Section -->
176
+ <section class="py-16 bg-gray-50">
177
+ <div class="container mx-auto px-4">
178
+ <h2 class="text-3xl font-bold text-center mb-4">Pourquoi choisir IA BVL?</h2>
179
+ <p class="text-xl text-center text-gray-600 mb-12 max-w-2xl mx-auto">Notre intelligence artificielle combine 2123 modèles spécialisés pour créer le site web parfait.</p>
180
+
181
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
182
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition">
183
+ <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mb-6">
184
+ <i class="fas fa-bolt text-purple-600 text-2xl"></i>
185
+ </div>
186
+ <h3 class="text-xl font-bold mb-3">Rapide</h3>
187
+ <p class="text-gray-600">Générez un site web complet en moins de 60 secondes. Plus besoin de passer des heures à coder ou concevoir.</p>
188
+ </div>
189
+
190
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition">
191
+ <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
192
+ <i class="fas fa-cogs text-blue-600 text-2xl"></i>
193
+ </div>
194
+ <h3 class="text-xl font-bold mb-3">Personnalisable</h3>
195
+ <p class="text-gray-600">Modifiez facilement chaque élément de votre site grâce à notre éditeur visuel intuitif.</p>
196
+ </div>
197
+
198
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition">
199
+ <div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-6">
200
+ <i class="fas fa-shield-alt text-green-600 text-2xl"></i>
201
+ </div>
202
+ <h3 class="text-xl font-bold mb-3">Sécurisé</h3>
203
+ <p class="text-gray-600">Hébergement sécurisé, mises à jour automatiques et protection contre les attaques inclus.</p>
204
+ </div>
205
+
206
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition">
207
+ <div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mb-6">
208
+ <i class="fas fa-mobile-alt text-yellow-600 text-2xl"></i>
209
+ </div>
210
+ <h3 class="text-xl font-bold mb-3">Optimisé mobile</h3>
211
+ <p class="text-gray-600">Tous les sites sont automatiquement optimisés pour les appareils mobiles et tablettes.</p>
212
+ </div>
213
+
214
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition">
215
+ <div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-6">
216
+ <i class="fas fa-chart-line text-red-600 text-2xl"></i>
217
+ </div>
218
+ <h3 class="text-xl font-bold mb-3">SEO intégré</h3>
219
+ <p class="text-gray-600">Notre IA optimise automatiquement votre site pour les moteurs de recherche.</p>
220
+ </div>
221
+
222
+ <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition">
223
+ <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
224
+ <i class="fas fa-globe text-indigo-600 text-2xl"></i>
225
+ </div>
226
+ <h3 class="text-xl font-bold mb-3">Multilingue</h3>
227
+ <p class="text-gray-600">Créez des sites en plusieurs langues avec notre système de traduction automatique.</p>
228
+ </div>
229
+ </div>
230
+ </div>
231
+ </section>
232
+
233
+ <!-- Results Section -->
234
+ <section class="py-16 bg-white">
235
+ <div class="container mx-auto px-4">
236
+ <h2 class="text-3xl font-bold text-center mb-12">Exemples de sites générés</h2>
237
+
238
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
239
+ <div class="rounded-xl overflow-hidden shadow-lg hover:shadow-2xl transition">
240
+ <div class="relative">
241
+ <img src="https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt="Site e-commerce" class="w-full h-48 object-cover">
242
+ <div class="absolute inset-0 bg-purple-600 opacity-0 hover:opacity-70 flex items-center justify-center transition">
243
+ <button class="text-white border-2 border-white px-4 py-2 rounded-full font-semibold">Voir le site</button>
244
+ </div>
245
+ </div>
246
+ <div class="p-6">
247
+ <h3 class="font-bold text-xl mb-2">Boutique de mode</h3>
248
+ <p class="text-gray-600 mb-4">Site e-commerce avec catalogue produits, panier et paiement sécurisé.</p>
249
+ <div class="flex space-x-2">
250
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">e-commerce</span>
251
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">moderne</span>
252
+ </div>
253
+ </div>
254
+ </div>
255
+
256
+ <div class="rounded-xl overflow-hidden shadow-lg hover:shadow-2xl transition">
257
+ <div class="relative">
258
+ <img src="https://images.unsplash.com/photo-1497366811353-6870744d04b2?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt="Site portfolio" class="w-full h-48 object-cover">
259
+ <div class="absolute inset-0 bg-purple-600 opacity-0 hover:opacity-70 flex items-center justify-center transition">
260
+ <button class="text-white border-2 border-white px-4 py-2 rounded-full font-semibold">Voir le site</button>
261
+ </div>
262
+ </div>
263
+ <div class="p-6">
264
+ <h3 class="font-bold text-xl mb-2">Portfolio créatif</h3>
265
+ <p class="text-gray-600 mb-4">Site portfolio pour photographe avec galerie et formulaire de contact.</p>
266
+ <div class="flex space-x-2">
267
+ <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded">portfolio</span>
268
+ <span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">minimaliste</span>
269
+ </div>
270
+ </div>
271
+ </div>
272
+
273
+ <div class="rounded-xl overflow-hidden shadow-lg hover:shadow-2xl transition">
274
+ <div class="relative">
275
+ <img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60" alt="Site entreprise" class="w-full h-48 object-cover">
276
+ <div class="absolute inset-0 bg-purple-600 opacity-0 hover:opacity-70 flex items-center justify-center transition">
277
+ <button class="text-white border-2 border-white px-4 py-2 rounded-full font-semibold">Voir le site</button>
278
+ </div>
279
+ </div>
280
+ <div class="p-6">
281
+ <h3 class="font-bold text-xl mb-2">Site corporate</h3>
282
+ <p class="text-gray-600 mb-4">Site vitrine professionnel avec présentation d'équipe et blog intégré.</p>
283
+ <div class="flex space-x-2">
284
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">entreprise</span>
285
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">professionnel</span>
286
+ </div>
287
+ </div>
288
+ </div>
289
+ </div>
290
+
291
+ <div class="text-center mt-12">
292
+ <button class="border-2 border-purple-600 text-purple-600 px-6 py-3 rounded-full font-bold hover:bg-purple-600 hover:text-white transition">
293
+ Voir plus d'exemples <i class="fas fa-arrow-right ml-2"></i>
294
+ </button>
295
+ </div>
296
+ </div>
297
+ </section>
298
+
299
+ <!-- Testimonials -->
300
+ <section class="py-16 bg-gray-50">
301
+ <div class="container mx-auto px-4">
302
+ <h2 class="text-3xl font-bold text-center mb-12">Ce que disent nos utilisateurs</h2>
303
+
304
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
305
+ <div class="bg-white p-8 rounded-xl shadow-md">
306
+ <div class="flex items-center mb-4">
307
+ <div class="text-yellow-400 mr-2">
308
+ <i class="fas fa-star"></i>
309
+ <i class="fas fa-star"></i>
310
+ <i class="fas fa-star"></i>
311
+ <i class="fas fa-star"></i>
312
+ <i class="fas fa-star"></i>
313
+ </div>
314
+ </div>
315
+ <p class="text-gray-600 mb-6">"J'ai créé mon site e-commerce en 5 minutes alors que je n'y connais rien en tech. Incroyable!"</p>
316
+ <div class="flex items-center">
317
+ <img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Marie D." class="w-12 h-12 rounded-full mr-4">
318
+ <div>
319
+ <h4 class="font-semibold">Marie D.</h4>
320
+ <p class="text-gray-500 text-sm">Créatrice de bijoux</p>
321
+ </div>
322
+ </div>
323
+ </div>
324
+
325
+ <div class="bg-white p-8 rounded-xl shadow-md">
326
+ <div class="flex items-center mb-4">
327
+ <div class="text-yellow-400 mr-2">
328
+ <i class="fas fa-star"></i>
329
+ <i class="fas fa-star"></i>
330
+ <i class="fas fa-star"></i>
331
+ <i class="fas fa-star"></i>
332
+ <i class="fas fa-star"></i>
333
+ </div>
334
+ </div>
335
+ <p class="text-gray-600 mb-6">"En tant que freelance, IA BVL m'a permis de proposer des sites web à mes clients sans passer des heures à coder."</p>
336
+ <div class="flex items-center">
337
+ <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Thomas L." class="w-12 h-12 rounded-full mr-4">
338
+ <div>
339
+ <h4 class="font-semibold">Thomas L.</h4>
340
+ <p class="text-gray-500 text-sm">Designer freelance</p>
341
+ </div>
342
+ </div>
343
+ </div>
344
+
345
+ <div class="bg-white p-8 rounded-xl shadow-md">
346
+ <div class="flex items-center mb-4">
347
+ <div class="text-yellow-400 mr-2">
348
+ <i class="fas fa-star"></i>
349
+ <i class="fas fa-star"></i>
350
+ <i class="fas fa-star"></i>
351
+ <i class="fas fa-star"></i>
352
+ <i class="fas fa-star-half-alt"></i>
353
+ </div>
354
+ </div>
355
+ <p class="text-gray-600 mb-6">"Le SEO intégré est fantastique. Mon site est bien classé sur Google sans que je n'aie rien à faire."</p>
356
+ <div class="flex items-center">
357
+ <img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Sophie R." class="w-12 h-12 rounded-full mr-4">
358
+ <div>
359
+ <h4 class="font-semibold">Sophie R.</h4>
360
+ <p class="text-gray-500 text-sm">Consultante marketing</p>
361
+ </div>
362
+ </div>
363
+ </div>
364
+ </div>
365
+ </div>
366
+ </section>
367
+
368
+ <!-- CTA Section -->
369
+ <section class="gradient-bg text-white py-16">
370
+ <div class="container mx-auto px-4 text-center">
371
+ <h2 class="text-3xl font-bold mb-6">Prêt à créer votre site web?</h2>
372
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Essayez IA BVL gratuitement et découvrez comment notre intelligence artificielle peut transformer vos idées en réalité.</p>
373
+ <button class="bg-white text-purple-600 px-8 py-4 rounded-full font-bold hover:bg-gray-100 transition text-lg">
374
+ Commencer maintenant <i class="fas fa-arrow-right ml-2"></i>
375
+ </button>
376
+ </div>
377
+ </section>
378
+
379
+ <!-- Footer -->
380
+ <footer class="bg-gray-900 text-white py-12">
381
+ <div class="container mx-auto px-4">
382
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
383
+ <div>
384
+ <h3 class="text-xl font-bold mb-4 flex items-center">
385
+ <i class="fas fa-robot mr-2"></i> IA BVL
386
+ </h3>
387
+ <p class="text-gray-400">L'intelligence artificielle qui crée des sites web parfaits en quelques secondes.</p>
388
+ </div>
389
+
390
+ <div>
391
+ <h4 class="font-semibold text-lg mb-4">Produit</h4>
392
+ <ul class="space-y-2">
393
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Fonctionnalités</a></li>
394
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Tarifs</a></li>
395
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Exemples</a></li>
396
+ <li><a href="#" class="text-gray-400 hover:text-white transition">API</a></li>
397
+ </ul>
398
+ </div>
399
+
400
+ <div>
401
+ <h4 class="font-semibold text-lg mb-4">Ressources</h4>
402
+ <ul class="space-y-2">
403
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
404
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
405
+ <li><a href="#" class="text-gray-400 hover:text-white transition">Support</a></li>
406
+ <li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li>
407
+ </ul>
408
+ </div>
409
+
410
+ <div>
411
+ <h4 class="font-semibold text-lg mb-4">Contact</h4>
412
+ <ul class="space-y-2">
413
+ <li class="flex items-center text-gray-400"><i class="fas fa-envelope mr-2"></i> [email protected]</li>
414
+ <li class="flex items-center text-gray-400"><i class="fas fa-phone mr-2"></i> +33 1 23 45 67 89</li>
415
+ <li class="flex items-center text-gray-400"><i class="fas fa-map-marker-alt mr-2"></i> Paris, France</li>
416
+ </ul>
417
+ <div class="flex space-x-4 mt-4">
418
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
419
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook"></i></a>
420
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin"></i></a>
421
+ <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
422
+ </div>
423
+ </div>
424
+ </div>
425
+
426
+ <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
427
+ <p class="text-gray-400 mb-4 md:mb-0">© 2023 IA BVL. Tous droits réservés.</p>
428
+ <div class="flex space-x-6">
429
+ <a href="#" class="text-gray-400 hover:text-white transition">Conditions</a>
430
+ <a href="#" class="text-gray-400 hover:text-white transition">Confidentialité</a>
431
+ <a href="#" class="text-gray-400 hover:text-white transition">Cookies</a>
432
+ </div>
433
+ </div>
434
+ </div>
435
+ </footer>
436
+
437
+ <!-- Generation Modal -->
438
+ <div id="generation-modal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
439
+ <div class="bg-white rounded-xl p-8 max-w-md w-full mx-4">
440
+ <div class="text-center">
441
+ <div class="w-20 h-20 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-6">
442
+ <i class="fas fa-cog fa-spin text-purple-600 text-3xl"></i>
443
+ </div>
444
+ <h3 class="text-xl font-bold mb-2">Génération en cours</h3>
445
+ <p class="text-gray-600 mb-6">Notre IA combine 2123 modèles spécialisés pour créer votre site web parfait.</p>
446
+ <div class="w-full bg-gray-200 rounded-full h-2.5 mb-6">
447
+ <div id="progress-bar" class="bg-purple-600 h-2.5 rounded-full" style="width: 0%"></div>
448
+ </div>
449
+ <p id="generation-status" class="text-sm text-gray-500">Analyse de votre demande...</p>
450
+ </div>
451
+ </div>
452
+ </div>
453
+
454
+ <!-- Result Modal -->
455
+ <div id="result-modal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
456
+ <div class="bg-white rounded-xl p-8 max-w-2xl w-full mx-4">
457
+ <div class="flex justify-between items-start mb-6">
458
+ <div>
459
+ <h3 class="text-2xl font-bold mb-2">Votre site est prêt!</h3>
460
+ <p class="text-gray-600">Voici le résultat généré par notre IA.</p>
461
+ </div>
462
+ <button id="close-modal" class="text-gray-400 hover:text-gray-600">
463
+ <i class="fas fa-times"></i>
464
+ </button>
465
+ </div>
466
+
467
+ <div class="border-2 border-dashed border-gray-300 rounded-lg p-6 mb-6">
468
+ <div class="flex items-center justify-center space-x-4">
469
+ <div class="text-green-500 text-4xl">
470
+ <i class="fas fa-check-circle"></i>
471
+ </div>
472
+ <div>
473
+ <h4 class="font-bold text-lg">Site généré avec succès</h4>
474
+ <p class="text-gray-600">Lien: <a href="#" class="text-purple-600 underline">mon-site.bvl.com</a></p>
475
+ </div>
476
+ </div>
477
+ </div>
478
+
479
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
480
+ <div class="border border-gray-200 rounded-lg p-4">
481
+ <h4 class="font-semibold mb-3">Actions disponibles</h4>
482
+ <ul class="space-y-3">
483
+ <li>
484
+ <a href="#" class="flex items-center text-purple-600 hover:text-purple-800">
485
+ <i class="fas fa-external-link-alt mr-2"></i> Visiter le site
486
+ </a>
487
+ </li>
488
+ <li>
489
+ <a href="#" class="flex items-center text-purple-600 hover:text-purple-800">
490
+ <i class="fas fa-edit mr-2"></i> Modifier le design
491
+ </a>
492
+ </li>
493
+ <li>
494
+ <a href="#" class="flex items-center text-purple-600 hover:text-purple-800">
495
+ <i class="fas fa-download mr-2"></i> Télécharger le code
496
+ </a>
497
+ </li>
498
+ </ul>
499
+ </div>
500
+
501
+ <div class="border border-gray-200 rounded-lg p-4">
502
+ <h4 class="font-semibold mb-3">Prochaines étapes</h4>
503
+ <ul class="space-y-3">
504
+ <li class="flex items-center text-gray-600">
505
+ <i class="fas fa-check-circle text-green-500 mr-2"></i> Ajouter un nom de domaine
506
+ </li>
507
+ <li class="flex items-center text-gray-600">
508
+ <i class="fas fa-check-circle text-green-500 mr-2"></i> Configurer le SEO
509
+ </li>
510
+ <li class="flex items-center text-gray-600">
511
+ <i class="fas fa-check-circle text-green-500 mr-2"></i> Activer les statistiques
512
+ </li>
513
+ </ul>
514
+ </div>
515
+ </div>
516
+
517
+ <div class="flex space-x-4">
518
+ <button class="flex-1 bg-purple-600 text-white py-3 rounded-lg font-bold hover:bg-purple-700 transition">
519
+ Publier maintenant
520
+ </button>
521
+ <button class="flex-1 border border-purple-600 text-purple-600 py-3 rounded-lg font-bold hover:bg-purple-50 transition">
522
+ Personnaliser davantage
523
+ </button>
524
+ </div>
525
+ </div>
526
+ </div>
527
+
528
+ <script>
529
+ // Animation de génération
530
+ document.getElementById('generate-btn').addEventListener('click', function() {
531
+ const modal = document.getElementById('generation-modal');
532
+ const progressBar = document.getElementById('progress-bar');
533
+ const statusText = document.getElementById('generation-status');
534
+
535
+ modal.classList.remove('hidden');
536
+
537
+ let progress = 0;
538
+ const interval = setInterval(() => {
539
+ progress += Math.random() * 10;
540
+ if (progress > 100) progress = 100;
541
+ progressBar.style.width = progress + '%';
542
+
543
+ if (progress < 30) {
544
+ statusText.textContent = "Analyse de votre demande...";
545
+ } else if (progress < 60) {
546
+ statusText.textContent = "Création de la structure du site...";
547
+ } else if (progress < 90) {
548
+ statusText.textContent = "Optimisation du design et du contenu...";
549
+ } else {
550
+ statusText.textContent = "Finalisation...";
551
+ }
552
+
553
+ if (progress === 100) {
554
+ clearInterval(interval);
555
+ setTimeout(() => {
556
+ modal.classList.add('hidden');
557
+ document.getElementById('result-modal').classList.remove('hidden');
558
+ }, 500);
559
+ }
560
+ }, 300);
561
+ });
562
+
563
+ // Fermer la modal
564
+ document.getElementById('close-modal').addEventListener('click', function() {
565
+ document.getElementById('result-modal').classList.add('hidden');
566
+ });
567
+
568
+ // Fermer en cliquant en dehors
569
+ window.addEventListener('click', function(event) {
570
+ if (event.target === document.getElementById('generation-modal')) {
571
+ document.getElementById('generation-modal').classList.add('hidden');
572
+ }
573
+ if (event.target === document.getElementById('result-modal')) {
574
+ document.getElementById('result-modal').classList.add('hidden');
575
+ }
576
+ });
577
+ </script>
578
+ <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/ia-bvl" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
579
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ je veux creer mon propre intéligence artificiel , qui génére des vrais site avec 2123 IA . se sera : IA bvl