docto41 commited on
Commit
0cad258
·
verified ·
1 Parent(s): 673f09f

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +379 -19
  3. prompts.txt +3 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Gttre
3
- emoji: 🏃
4
  colorFrom: yellow
5
- colorTo: red
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: gttre
3
+ emoji: 🐳
4
  colorFrom: yellow
5
+ colorTo: purple
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,379 @@
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>WebGen AI - Créez des sites web instantanément</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
+ .floating {
15
+ animation: float 6s ease-in-out infinite;
16
+ }
17
+ .gradient-text {
18
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
19
+ -webkit-background-clip: text;
20
+ background-clip: text;
21
+ color: transparent;
22
+ }
23
+ .card-hover {
24
+ transition: all 0.3s ease;
25
+ }
26
+ .card-hover:hover {
27
+ transform: translateY(-10px);
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
+ .pulse {
31
+ animation: pulse 2s infinite;
32
+ }
33
+ @keyframes pulse {
34
+ 0% { transform: scale(1); }
35
+ 50% { transform: scale(1.05); }
36
+ 100% { transform: scale(1); }
37
+ }
38
+ .wave {
39
+ animation: wave 2s infinite;
40
+ transform-origin: 70% 70%;
41
+ display: inline-block;
42
+ }
43
+ @keyframes wave {
44
+ 0% { transform: rotate(0deg); }
45
+ 10% { transform: rotate(14deg); }
46
+ 20% { transform: rotate(-8deg); }
47
+ 30% { transform: rotate(14deg); }
48
+ 40% { transform: rotate(-4deg); }
49
+ 50% { transform: rotate(10deg); }
50
+ 60% { transform: rotate(0deg); }
51
+ 100% { transform: rotate(0deg); }
52
+ }
53
+ .slide-in {
54
+ animation: slideIn 1s ease-out forwards;
55
+ }
56
+ @keyframes slideIn {
57
+ from { transform: translateY(50px); opacity: 0; }
58
+ to { transform: translateY(0); opacity: 1; }
59
+ }
60
+ </style>
61
+ </head>
62
+ <body class="bg-gray-50 font-sans">
63
+ <!-- Navigation -->
64
+ <nav class="bg-white shadow-sm fixed w-full z-10">
65
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
66
+ <div class="flex justify-between h-16">
67
+ <div class="flex items-center">
68
+ <div class="flex-shrink-0 flex items-center">
69
+ <i class="fas fa-robot text-indigo-600 text-2xl mr-2"></i>
70
+ <span class="text-xl font-bold text-gray-900">WebGen<span class="text-indigo-600">AI</span></span>
71
+ </div>
72
+ </div>
73
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
74
+ <a href="#" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Accueil</a>
75
+ <a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Fonctionnalités</a>
76
+ <a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Exemples</a>
77
+ <a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Tarifs</a>
78
+ </div>
79
+ <div class="flex items-center">
80
+ <a href="#generator" class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">
81
+ Créer mon site <i class="fas fa-arrow-right ml-1"></i>
82
+ </a>
83
+ </div>
84
+ </div>
85
+ </div>
86
+ </nav>
87
+
88
+ <!-- Hero Section -->
89
+ <section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
90
+ <div class="flex flex-col md:flex-row items-center">
91
+ <div class="md:w-1/2 mb-10 md:mb-0 slide-in">
92
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6">
93
+ Votre site web professionnel <span class="gradient-text">en 2 minutes</span>
94
+ </h1>
95
+ <p class="text-lg text-gray-600 mb-8">
96
+ Notre IA avancée crée automatiquement le site web parfait pour votre activité.
97
+ Aucune compétence technique requise - commencez directement.
98
+ </p>
99
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
100
+ <a href="#generator" class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-md text-lg font-medium transition duration-300 transform hover:scale-105 flex items-center justify-center pulse">
101
+ <i class="fas fa-bolt mr-2"></i> Générer mon site maintenant
102
+ </a>
103
+ </div>
104
+ <div class="mt-8 flex items-center">
105
+ <div class="flex -space-x-2">
106
+ <img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/12.jpg" alt="">
107
+ <img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
108
+ <img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/45.jpg" alt="">
109
+ </div>
110
+ <div class="ml-4">
111
+ <p class="text-sm text-gray-500"><span class="font-medium text-gray-900">15,000+</span> sites créés cette semaine</p>
112
+ </div>
113
+ </div>
114
+ </div>
115
+ <div class="md:w-1/2 relative">
116
+ <div class="relative floating">
117
+ <div class="absolute -top-6 -left-6 w-32 h-32 bg-indigo-100 rounded-full opacity-70"></div>
118
+ <div class="absolute -bottom-6 -right-6 w-32 h-32 bg-purple-100 rounded-full opacity-70"></div>
119
+ <div class="relative bg-white p-2 rounded-2xl shadow-xl border border-gray-100">
120
+ <div class="bg-gray-800 rounded-lg overflow-hidden">
121
+ <div class="px-4 py-3 bg-gray-900 flex items-center">
122
+ <div class="flex space-x-2">
123
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
124
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
125
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
126
+ </div>
127
+ <div class="ml-4 text-sm text-gray-400">www.votresite.com</div>
128
+ </div>
129
+ <div class="p-6">
130
+ <div class="h-64 bg-gradient-to-br from-indigo-50 to-purple-50 rounded-lg flex items-center justify-center">
131
+ <div class="text-center">
132
+ <i class="fas fa-magic text-5xl text-indigo-600 mb-4"></i>
133
+ <h3 class="text-xl font-bold text-gray-800">Votre site web généré par IA</h3>
134
+ <p class="text-gray-600 mt-2">Prêt en quelques minutes!</p>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ </div>
142
+ </div>
143
+ </section>
144
+
145
+ <!-- Site Generator -->
146
+ <section id="generator" class="py-20 bg-white">
147
+ <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
148
+ <div class="text-center mb-12 slide-in">
149
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Créez votre site maintenant</h2>
150
+ <p class="text-xl text-gray-600">
151
+ Décrivez simplement ce que vous voulez et notre IA fera le reste
152
+ </p>
153
+ </div>
154
+
155
+ <div class="bg-gray-50 rounded-xl p-8 shadow-md slide-in">
156
+ <div class="mb-8">
157
+ <label for="site-type" class="block text-lg font-medium text-gray-700 mb-2">Type de site</label>
158
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
159
+ <button class="site-type-btn bg-white border border-gray-300 rounded-lg px-4 py-3 flex items-center justify-center hover:border-indigo-500 hover:bg-indigo-50 transition">
160
+ <i class="fas fa-store text-indigo-600 mr-2"></i> E-commerce
161
+ </button>
162
+ <button class="site-type-btn bg-white border border-gray-300 rounded-lg px-4 py-3 flex items-center justify-center hover:border-indigo-500 hover:bg-indigo-50 transition">
163
+ <i class="fas fa-utensils text-indigo-600 mr-2"></i> Restaurant
164
+ </button>
165
+ <button class="site-type-btn bg-white border border-gray-300 rounded-lg px-4 py-3 flex items-center justify-center hover:border-indigo-500 hover:bg-indigo-50 transition">
166
+ <i class="fas fa-briefcase text-indigo-600 mr-2"></i> Professionnel
167
+ </button>
168
+ <button class="site-type-btn bg-white border border-gray-300 rounded-lg px-4 py-3 flex items-center justify-center hover:border-indigo-500 hover:bg-indigo-50 transition">
169
+ <i class="fas fa-camera text-indigo-600 mr-2"></i> Portfolio
170
+ </button>
171
+ </div>
172
+ </div>
173
+
174
+ <div class="mb-8">
175
+ <label for="site-description" class="block text-lg font-medium text-gray-700 mb-2">Décrivez votre site</label>
176
+ <textarea id="site-description" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="Ex: J'ai besoin d'un site vitrine pour mon salon de coiffure avec galerie de réalisations, prise de rendez-vous en ligne et informations sur les tarifs..."></textarea>
177
+ </div>
178
+
179
+ <div class="mb-8">
180
+ <label class="block text-lg font-medium text-gray-700 mb-2">Style préféré</label>
181
+ <div class="grid grid-cols-3 gap-4">
182
+ <button class="style-btn bg-white border border-gray-300 rounded-lg p-2 hover:border-indigo-500 hover:bg-indigo-50 transition">
183
+ <div class="h-20 bg-gradient-to-r from-blue-400 to-blue-600 rounded-md"></div>
184
+ <span class="block mt-2 text-sm">Moderne</span>
185
+ </button>
186
+ <button class="style-btn bg-white border border-gray-300 rounded-lg p-2 hover:border-indigo-500 hover:bg-indigo-50 transition">
187
+ <div class="h-20 bg-gradient-to-r from-purple-400 to-pink-600 rounded-md"></div>
188
+ <span class="block mt-2 text-sm">Créatif</span>
189
+ </button>
190
+ <button class="style-btn bg-white border border-gray-300 rounded-lg p-2 hover:border-indigo-500 hover:bg-indigo-50 transition">
191
+ <div class="h-20 bg-gradient-to-r from-gray-700 to-gray-900 rounded-md"></div>
192
+ <span class="block mt-2 text-sm">Élégant</span>
193
+ </button>
194
+ </div>
195
+ </div>
196
+
197
+ <div class="flex justify-center">
198
+ <button id="generate-btn" class="bg-indigo-600 hover:bg-indigo-700 text-white px-8 py-4 rounded-md text-lg font-bold transition duration-300 transform hover:scale-105 flex items-center">
199
+ <i class="fas fa-magic mr-2"></i> Générer mon site
200
+ </button>
201
+ </div>
202
+ </div>
203
+ </div>
204
+ </section>
205
+
206
+ <!-- Features Section -->
207
+ <section class="py-20 bg-gradient-to-r from-indigo-50 to-purple-50">
208
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
209
+ <div class="text-center mb-16 slide-in">
210
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Pourquoi choisir WebGen AI?</h2>
211
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
212
+ La solution la plus rapide et intuitive pour créer un site web professionnel
213
+ </p>
214
+ </div>
215
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
216
+ <div class="bg-white p-8 rounded-xl card-hover slide-in">
217
+ <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
218
+ <i class="fas fa-bolt text-indigo-600 text-2xl"></i>
219
+ </div>
220
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Rapide</h3>
221
+ <p class="text-gray-600">
222
+ Obtenez un site web entièrement fonctionnel en quelques minutes seulement, sans temps d'attente.
223
+ </p>
224
+ </div>
225
+ <div class="bg-white p-8 rounded-xl card-hover slide-in" style="animation-delay: 0.2s;">
226
+ <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mb-6">
227
+ <i class="fas fa-euro-sign text-purple-600 text-2xl"></i>
228
+ </div>
229
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Économique</h3>
230
+ <p class="text-gray-600">
231
+ Économisez des milliers d'euros en frais de développement. Notre solution est jusqu'à 10x moins chère.
232
+ </p>
233
+ </div>
234
+ <div class="bg-white p-8 rounded-xl card-hover slide-in" style="animation-delay: 0.4s;">
235
+ <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
236
+ <i class="fas fa-mobile-alt text-blue-600 text-2xl"></i>
237
+ </div>
238
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Optimisé</h3>
239
+ <p class="text-gray-600">
240
+ Sites 100% responsive, optimisés pour le SEO et compatibles avec tous les appareils.
241
+ </p>
242
+ </div>
243
+ </div>
244
+ </div>
245
+ </section>
246
+
247
+ <!-- CTA Section -->
248
+ <section class="py-20 bg-indigo-600">
249
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
250
+ <h2 class="text-3xl font-bold text-white mb-6">Prêt à lancer votre présence en ligne?</h2>
251
+ <p class="text-xl text-indigo-100 mb-8 max-w-3xl mx-auto">
252
+ Créez votre site web professionnel dès maintenant et commencez à attirer des clients aujourd'hui.
253
+ </p>
254
+ <div class="flex justify-center">
255
+ <a href="#generator" class="bg-white hover:bg-gray-100 text-indigo-600 px-8 py-4 rounded-md text-lg font-bold transition duration-300 transform hover:scale-105 flex items-center">
256
+ <i class="fas fa-bolt mr-2"></i> Commencer maintenant
257
+ </a>
258
+ </div>
259
+ </div>
260
+ </section>
261
+
262
+ <!-- Footer -->
263
+ <footer class="bg-gray-900 text-white py-12">
264
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
265
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
266
+ <div>
267
+ <h3 class="text-lg font-bold mb-4">WebGen AI</h3>
268
+ <p class="text-gray-400">
269
+ L'IA la plus avancée pour créer des sites web professionnels en quelques minutes.
270
+ </p>
271
+ <div class="mt-4 flex space-x-4">
272
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
273
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook"></i></a>
274
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
275
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a>
276
+ </div>
277
+ </div>
278
+ <div>
279
+ <h3 class="text-lg font-bold mb-4">Produit</h3>
280
+ <ul class="space-y-2">
281
+ <li><a href="#" class="text-gray-400 hover:text-white">Fonctionnalités</a></li>
282
+ <li><a href="#" class="text-gray-400 hover:text-white">Tarifs</a></li>
283
+ <li><a href="#" class="text-gray-400 hover:text-white">Exemples</a></li>
284
+ <li><a href="#" class="text-gray-400 hover:text-white">API</a></li>
285
+ </ul>
286
+ </div>
287
+ <div>
288
+ <h3 class="text-lg font-bold mb-4">Ressources</h3>
289
+ <ul class="space-y-2">
290
+ <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
291
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
292
+ <li><a href="#" class="text-gray-400 hover:text-white">Support</a></li>
293
+ <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
294
+ </ul>
295
+ </div>
296
+ <div>
297
+ <h3 class="text-lg font-bold mb-4">Entreprise</h3>
298
+ <ul class="space-y-2">
299
+ <li><a href="#" class="text-gray-400 hover:text-white">À propos</a></li>
300
+ <li><a href="#" class="text-gray-400 hover:text-white">Carrières</a></li>
301
+ <li><a href="#" class="text-gray-400 hover:text-white">Confidentialité</a></li>
302
+ <li><a href="#" class="text-gray-400 hover:text-white">Conditions</a></li>
303
+ </ul>
304
+ </div>
305
+ </div>
306
+ <div class="mt-12 pt-8 border-t border-gray-800 text-center text-gray-400">
307
+ <p>&copy; 2023 WebGen AI. Tous droits réservés.</p>
308
+ </div>
309
+ </div>
310
+ </footer>
311
+
312
+ <script>
313
+ document.addEventListener('DOMContentLoaded', function() {
314
+ // Highlight selected site type
315
+ const siteTypeBtns = document.querySelectorAll('.site-type-btn');
316
+ siteTypeBtns.forEach(btn => {
317
+ btn.addEventListener('click', function() {
318
+ siteTypeBtns.forEach(b => b.classList.remove('border-indigo-500', 'bg-indigo-50'));
319
+ this.classList.add('border-indigo-500', 'bg-indigo-50');
320
+ });
321
+ });
322
+
323
+ // Highlight selected style
324
+ const styleBtns = document.querySelectorAll('.style-btn');
325
+ styleBtns.forEach(btn => {
326
+ btn.addEventListener('click', function() {
327
+ styleBtns.forEach(b => b.classList.remove('border-indigo-500', 'bg-indigo-50'));
328
+ this.classList.add('border-indigo-500', 'bg-indigo-50');
329
+ });
330
+ });
331
+
332
+ // Generate site button
333
+ const generateBtn = document.getElementById('generate-btn');
334
+ generateBtn.addEventListener('click', function() {
335
+ // Animation
336
+ this.innerHTML = '<i class="fas fa-spinner fa-spin mr-2"></i> Génération en cours...';
337
+ this.classList.add('cursor-not-allowed');
338
+
339
+ // Simulate generation
340
+ setTimeout(() => {
341
+ // Show success message
342
+ alert('Votre site a été généré avec succès! Vous allez être redirigé vers l\'éditeur.');
343
+
344
+ // Redirect to editor (simulated)
345
+ window.location.href = "#";
346
+ }, 2000);
347
+ });
348
+
349
+ // Animate elements on scroll
350
+ const animateOnScroll = function() {
351
+ const elements = document.querySelectorAll('.slide-in');
352
+ elements.forEach(el => {
353
+ const elementPosition = el.getBoundingClientRect().top;
354
+ const screenPosition = window.innerHeight / 1.3;
355
+
356
+ if (elementPosition < screenPosition) {
357
+ el.style.opacity = '1';
358
+ el.style.transform = 'translateY(0)';
359
+ }
360
+ });
361
+ };
362
+
363
+ // Set initial state
364
+ const slideInElements = document.querySelectorAll('.slide-in');
365
+ slideInElements.forEach(el => {
366
+ el.style.opacity = '0';
367
+ el.style.transform = 'translateY(50px)';
368
+ el.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
369
+ });
370
+
371
+ // Listen to scroll events
372
+ window.addEventListener('scroll', animateOnScroll);
373
+
374
+ // Trigger once on load
375
+ animateOnScroll();
376
+ });
377
+ </script>
378
+ <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/gttre" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
379
+ </html>
prompts.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ Créez n'importe quel type de site web en minutes L'IA la plus avancée pour générer des sites web professionnelse automatique avec un tres belle interface anime
2
+ commencer direct sans essaie
3
+ génereé le site direct