File size: 21,932 Bytes
0cad258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>WebGen AI - Créez des sites web instantanément</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .wave {
            animation: wave 2s infinite;
            transform-origin: 70% 70%;
            display: inline-block;
        }
        @keyframes wave {
            0% { transform: rotate(0deg); }
            10% { transform: rotate(14deg); }
            20% { transform: rotate(-8deg); }
            30% { transform: rotate(14deg); }
            40% { transform: rotate(-4deg); }
            50% { transform: rotate(10deg); }
            60% { transform: rotate(0deg); }
            100% { transform: rotate(0deg); }
        }
        .slide-in {
            animation: slideIn 1s ease-out forwards;
        }
        @keyframes slideIn {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <!-- Navigation -->
    <nav class="bg-white shadow-sm fixed w-full z-10">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16">
                <div class="flex items-center">
                    <div class="flex-shrink-0 flex items-center">
                        <i class="fas fa-robot text-indigo-600 text-2xl mr-2"></i>
                        <span class="text-xl font-bold text-gray-900">WebGen<span class="text-indigo-600">AI</span></span>
                    </div>
                </div>
                <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
                    <a href="#" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Accueil</a>
                    <a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Fonctionnalités</a>
                    <a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Exemples</a>
                    <a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Tarifs</a>
                </div>
                <div class="flex items-center">
                    <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">
                        Créer mon site <i class="fas fa-arrow-right ml-1"></i>
                    </a>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
        <div class="flex flex-col md:flex-row items-center">
            <div class="md:w-1/2 mb-10 md:mb-0 slide-in">
                <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6">
                    Votre site web professionnel <span class="gradient-text">en 2 minutes</span>
                </h1>
                <p class="text-lg text-gray-600 mb-8">
                    Notre IA avancée crée automatiquement le site web parfait pour votre activité.
                    Aucune compétence technique requise - commencez directement.
                </p>
                <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
                    <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">
                        <i class="fas fa-bolt mr-2"></i> Générer mon site maintenant
                    </a>
                </div>
                <div class="mt-8 flex items-center">
                    <div class="flex -space-x-2">
                        <img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/12.jpg" alt="">
                        <img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
                        <img class="w-10 h-10 rounded-full border-2 border-white" src="https://randomuser.me/api/portraits/women/45.jpg" alt="">
                    </div>
                    <div class="ml-4">
                        <p class="text-sm text-gray-500"><span class="font-medium text-gray-900">15,000+</span> sites créés cette semaine</p>
                    </div>
                </div>
            </div>
            <div class="md:w-1/2 relative">
                <div class="relative floating">
                    <div class="absolute -top-6 -left-6 w-32 h-32 bg-indigo-100 rounded-full opacity-70"></div>
                    <div class="absolute -bottom-6 -right-6 w-32 h-32 bg-purple-100 rounded-full opacity-70"></div>
                    <div class="relative bg-white p-2 rounded-2xl shadow-xl border border-gray-100">
                        <div class="bg-gray-800 rounded-lg overflow-hidden">
                            <div class="px-4 py-3 bg-gray-900 flex items-center">
                                <div class="flex space-x-2">
                                    <div class="w-3 h-3 rounded-full bg-red-500"></div>
                                    <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
                                    <div class="w-3 h-3 rounded-full bg-green-500"></div>
                                </div>
                                <div class="ml-4 text-sm text-gray-400">www.votresite.com</div>
                            </div>
                            <div class="p-6">
                                <div class="h-64 bg-gradient-to-br from-indigo-50 to-purple-50 rounded-lg flex items-center justify-center">
                                    <div class="text-center">
                                        <i class="fas fa-magic text-5xl text-indigo-600 mb-4"></i>
                                        <h3 class="text-xl font-bold text-gray-800">Votre site web généré par IA</h3>
                                        <p class="text-gray-600 mt-2">Prêt en quelques minutes!</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Site Generator -->
    <section id="generator" class="py-20 bg-white">
        <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-12 slide-in">
                <h2 class="text-3xl font-bold text-gray-900 mb-4">Créez votre site maintenant</h2>
                <p class="text-xl text-gray-600">
                    Décrivez simplement ce que vous voulez et notre IA fera le reste
                </p>
            </div>
            
            <div class="bg-gray-50 rounded-xl p-8 shadow-md slide-in">
                <div class="mb-8">
                    <label for="site-type" class="block text-lg font-medium text-gray-700 mb-2">Type de site</label>
                    <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
                        <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">
                            <i class="fas fa-store text-indigo-600 mr-2"></i> E-commerce
                        </button>
                        <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">
                            <i class="fas fa-utensils text-indigo-600 mr-2"></i> Restaurant
                        </button>
                        <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">
                            <i class="fas fa-briefcase text-indigo-600 mr-2"></i> Professionnel
                        </button>
                        <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">
                            <i class="fas fa-camera text-indigo-600 mr-2"></i> Portfolio
                        </button>
                    </div>
                </div>
                
                <div class="mb-8">
                    <label for="site-description" class="block text-lg font-medium text-gray-700 mb-2">Décrivez votre site</label>
                    <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>
                </div>
                
                <div class="mb-8">
                    <label class="block text-lg font-medium text-gray-700 mb-2">Style préféré</label>
                    <div class="grid grid-cols-3 gap-4">
                        <button class="style-btn bg-white border border-gray-300 rounded-lg p-2 hover:border-indigo-500 hover:bg-indigo-50 transition">
                            <div class="h-20 bg-gradient-to-r from-blue-400 to-blue-600 rounded-md"></div>
                            <span class="block mt-2 text-sm">Moderne</span>
                        </button>
                        <button class="style-btn bg-white border border-gray-300 rounded-lg p-2 hover:border-indigo-500 hover:bg-indigo-50 transition">
                            <div class="h-20 bg-gradient-to-r from-purple-400 to-pink-600 rounded-md"></div>
                            <span class="block mt-2 text-sm">Créatif</span>
                        </button>
                        <button class="style-btn bg-white border border-gray-300 rounded-lg p-2 hover:border-indigo-500 hover:bg-indigo-50 transition">
                            <div class="h-20 bg-gradient-to-r from-gray-700 to-gray-900 rounded-md"></div>
                            <span class="block mt-2 text-sm">Élégant</span>
                        </button>
                    </div>
                </div>
                
                <div class="flex justify-center">
                    <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">
                        <i class="fas fa-magic mr-2"></i> Générer mon site
                    </button>
                </div>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section class="py-20 bg-gradient-to-r from-indigo-50 to-purple-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-16 slide-in">
                <h2 class="text-3xl font-bold text-gray-900 mb-4">Pourquoi choisir WebGen AI?</h2>
                <p class="text-xl text-gray-600 max-w-3xl mx-auto">
                    La solution la plus rapide et intuitive pour créer un site web professionnel
                </p>
            </div>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="bg-white p-8 rounded-xl card-hover slide-in">
                    <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
                        <i class="fas fa-bolt text-indigo-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Rapide</h3>
                    <p class="text-gray-600">
                        Obtenez un site web entièrement fonctionnel en quelques minutes seulement, sans temps d'attente.
                    </p>
                </div>
                <div class="bg-white p-8 rounded-xl card-hover slide-in" style="animation-delay: 0.2s;">
                    <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mb-6">
                        <i class="fas fa-euro-sign text-purple-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Économique</h3>
                    <p class="text-gray-600">
                        Économisez des milliers d'euros en frais de développement. Notre solution est jusqu'à 10x moins chère.
                    </p>
                </div>
                <div class="bg-white p-8 rounded-xl card-hover slide-in" style="animation-delay: 0.4s;">
                    <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
                        <i class="fas fa-mobile-alt text-blue-600 text-2xl"></i>
                    </div>
                    <h3 class="text-xl font-bold text-gray-900 mb-3">Optimisé</h3>
                    <p class="text-gray-600">
                        Sites 100% responsive, optimisés pour le SEO et compatibles avec tous les appareils.
                    </p>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="py-20 bg-indigo-600">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
            <h2 class="text-3xl font-bold text-white mb-6">Prêt à lancer votre présence en ligne?</h2>
            <p class="text-xl text-indigo-100 mb-8 max-w-3xl mx-auto">
                Créez votre site web professionnel dès maintenant et commencez à attirer des clients aujourd'hui.
            </p>
            <div class="flex justify-center">
                <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">
                    <i class="fas fa-bolt mr-2"></i> Commencer maintenant
                </a>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-gray-900 text-white py-12">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
                <div>
                    <h3 class="text-lg font-bold mb-4">WebGen AI</h3>
                    <p class="text-gray-400">
                        L'IA la plus avancée pour créer des sites web professionnels en quelques minutes.
                    </p>
                    <div class="mt-4 flex space-x-4">
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a>
                    </div>
                </div>
                <div>
                    <h3 class="text-lg font-bold mb-4">Produit</h3>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Fonctionnalités</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Tarifs</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Exemples</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">API</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-lg font-bold mb-4">Ressources</h3>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Support</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-lg font-bold mb-4">Entreprise</h3>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">À propos</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Carrières</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Confidentialité</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Conditions</a></li>
                    </ul>
                </div>
            </div>
            <div class="mt-12 pt-8 border-t border-gray-800 text-center text-gray-400">
                <p>&copy; 2023 WebGen AI. Tous droits réservés.</p>
            </div>
        </div>
    </footer>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            // Highlight selected site type
            const siteTypeBtns = document.querySelectorAll('.site-type-btn');
            siteTypeBtns.forEach(btn => {
                btn.addEventListener('click', function() {
                    siteTypeBtns.forEach(b => b.classList.remove('border-indigo-500', 'bg-indigo-50'));
                    this.classList.add('border-indigo-500', 'bg-indigo-50');
                });
            });
            
            // Highlight selected style
            const styleBtns = document.querySelectorAll('.style-btn');
            styleBtns.forEach(btn => {
                btn.addEventListener('click', function() {
                    styleBtns.forEach(b => b.classList.remove('border-indigo-500', 'bg-indigo-50'));
                    this.classList.add('border-indigo-500', 'bg-indigo-50');
                });
            });
            
            // Generate site button
            const generateBtn = document.getElementById('generate-btn');
            generateBtn.addEventListener('click', function() {
                // Animation
                this.innerHTML = '<i class="fas fa-spinner fa-spin mr-2"></i> Génération en cours...';
                this.classList.add('cursor-not-allowed');
                
                // Simulate generation
                setTimeout(() => {
                    // Show success message
                    alert('Votre site a été généré avec succès! Vous allez être redirigé vers l\'éditeur.');
                    
                    // Redirect to editor (simulated)
                    window.location.href = "#";
                }, 2000);
            });
            
            // Animate elements on scroll
            const animateOnScroll = function() {
                const elements = document.querySelectorAll('.slide-in');
                elements.forEach(el => {
                    const elementPosition = el.getBoundingClientRect().top;
                    const screenPosition = window.innerHeight / 1.3;
                    
                    if (elementPosition < screenPosition) {
                        el.style.opacity = '1';
                        el.style.transform = 'translateY(0)';
                    }
                });
            };
            
            // Set initial state
            const slideInElements = document.querySelectorAll('.slide-in');
            slideInElements.forEach(el => {
                el.style.opacity = '0';
                el.style.transform = 'translateY(50px)';
                el.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
            });
            
            // Listen to scroll events
            window.addEventListener('scroll', animateOnScroll);
            
            // Trigger once on load
            animateOnScroll();
        });
    </script>
<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>
</html>