Spaces:
Running
Running
| <html lang="fr"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Mega Site Generator - Créateur de Sites Professionnels</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(-10px); } | |
| } | |
| @keyframes pulse { | |
| 0%, 100% { opacity: 1; } | |
| 50% { opacity: 0.5; } | |
| } | |
| @keyframes rotate { | |
| 0% { transform: rotate(0deg); } | |
| 100% { transform: rotate(360deg); } | |
| } | |
| .floating { | |
| animation: float 3s ease-in-out infinite; | |
| } | |
| .pulse { | |
| animation: pulse 2s ease-in-out infinite; | |
| } | |
| .rotate { | |
| animation: rotate 4s linear infinite; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #6e8efb, #a777e3); | |
| } | |
| .code-editor { | |
| background: #1e293b; | |
| border-radius: 0.5rem; | |
| box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); | |
| } | |
| .preview-window { | |
| background: white; | |
| border-radius: 0.5rem; | |
| box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); | |
| transition: all 0.3s ease; | |
| } | |
| .preview-window:hover { | |
| transform: scale(1.02); | |
| } | |
| .progress-bar { | |
| height: 6px; | |
| background: linear-gradient(90deg, #4f46e5, #a855f7); | |
| transition: width 0.5s ease; | |
| } | |
| .ai-chip { | |
| background: linear-gradient(90deg, #8b5cf6, #ec4899); | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); | |
| } | |
| .feature-card { | |
| transition: all 0.3s ease; | |
| } | |
| .glow { | |
| box-shadow: 0 0 15px rgba(167, 119, 227, 0.7); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-100 font-sans"> | |
| <!-- Header --> | |
| <header class="gradient-bg text-white"> | |
| <div class="container mx-auto px-4 py-8"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <i class="fas fa-robot text-3xl floating"></i> | |
| <h1 class="text-3xl font-bold">Mega Site Generator</h1> | |
| </div> | |
| <nav class="hidden md:flex space-x-6"> | |
| <a href="#" class="hover:text-gray-200 transition">Accueil</a> | |
| <a href="#" class="hover:text-gray-200 transition">Fonctionnalités</a> | |
| <a href="#" class="hover:text-gray-200 transition">Exemples</a> | |
| <a href="#" class="hover:text-gray-200 transition">Prix</a> | |
| <a href="#" class="hover:text-gray-200 transition">Contact</a> | |
| </nav> | |
| <button class="md:hidden text-2xl"> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| <div class="mt-16 mb-20 text-center"> | |
| <h2 class="text-5xl font-bold mb-6">Créez des sites professionnels <span class="text-yellow-300">automatiquement</span></h2> | |
| <p class="text-xl mb-8 max-w-3xl mx-auto">Notre système robotisé génère des sites complets avec plus de 1500 lignes de code, plusieurs pages et une structure professionnelle en quelques minutes.</p> | |
| <div class="flex justify-center space-x-4"> | |
| <button class="bg-white text-purple-700 px-8 py-3 rounded-full font-bold hover:bg-gray-100 transition transform hover:scale-105"> | |
| Essai Gratuit <i class="fas fa-arrow-right ml-2"></i> | |
| </button> | |
| <button class="border-2 border-white px-8 py-3 rounded-full font-bold hover:bg-white hover:text-purple-700 transition transform hover:scale-105"> | |
| Voir la démo | |
| </button> | |
| </div> | |
| </div> | |
| <div class="relative h-64"> | |
| <div class="absolute -bottom-20 left-1/2 transform -translate-x-1/2 w-11/12 max-w-6xl"> | |
| <div class="bg-white rounded-xl shadow-2xl p-6 code-editor"> | |
| <div class="flex mb-4"> | |
| <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div> | |
| <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div> | |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> | |
| </div> | |
| <div class="flex"> | |
| <div class="w-1/4 pr-4 border-r border-gray-200"> | |
| <div class="text-sm text-gray-500 mb-2"><i class="fas fa-folder mr-2"></i> Projet</div> | |
| <div class="text-sm text-gray-500 mb-1 ml-4"><i class="fas fa-folder mr-2"></i> pages</div> | |
| <div class="text-sm text-gray-500 mb-1 ml-8"><i class="far fa-file mr-2"></i> accueil.html</div> | |
| <div class="text-sm text-gray-500 mb-1 ml-8"><i class="far fa-file mr-2"></i> services.html</div> | |
| <div class="text-sm text-gray-500 mb-1 ml-8"><i class="far fa-file mr-2"></i> contact.html</div> | |
| <div class="text-sm text-gray-500 mb-2 ml-4"><i class="fas fa-folder mr-2"></i> assets</div> | |
| <div class="text-sm text-gray-500 mb-1 ml-8"><i class="fas fa-folder mr-2"></i> css</div> | |
| <div class="text-sm text-gray-500 mb-1 ml-8"><i class="fas fa-folder mr-2"></i> js</div> | |
| <div class="text-sm text-gray-500 mb-1 ml-8"><i class="fas fa-folder mr-2"></i> images</div> | |
| </div> | |
| <div class="w-3/4 pl-4"> | |
| <div class="text-sm text-gray-300"> | |
| <span class="text-purple-400"><!DOCTYPE html></span><br> | |
| <span class="text-purple-400"><html</span> <span class="text-green-400">lang=</span><span class="text-yellow-300">"fr"</span><span class="text-purple-400">></span><br> | |
| <span class="text-purple-400"><head></span><br> | |
| <span class="text-purple-400"><meta</span> <span class="text-green-400">charset=</span><span class="text-yellow-300">"UTF-8"</span><span class="text-purple-400">></span><br> | |
| <span class="text-purple-400"><meta</span> <span class="text-green-400">name=</span><span class="text-yellow-300">"viewport"</span> <span class="text-green-400">content=</span><span class="text-yellow-300">"width=device-width, initial-scale=1.0"</span><span class="text-purple-400">></span><br> | |
| <span class="text-purple-400"><title></span><span class="text-gray-100">Mon Site Professionnel</span><span class="text-purple-400"></title></span><br> | |
| <span class="text-purple-400"><link</span> <span class="text-green-400">rel=</span><span class="text-yellow-300">"stylesheet"</span> <span class="text-green-400">href=</span><span class="text-yellow-300">"css/style.css"</span><span class="text-purple-400">></span><br> | |
| <span class="text-purple-400"></head></span><br> | |
| <span class="text-purple-400"><body></span><br> | |
| <span class="text-purple-400"><header</span> <span class="text-green-400">class=</span><span class="text-yellow-300">"header"</span><span class="text-purple-400">></span><br> | |
| <span class="text-purple-400"><nav></span><br> | |
| <span class="text-purple-400"><ul</span> <span class="text-green-400">class=</span><span class="text-yellow-300">"nav-list"</span><span class="text-purple-400">></span><br> | |
| <span class="text-purple-400"><li><a</span> <span class="text-green-400">href=</span><span class="text-yellow-300">"#"</span><span class="text-purple-400">></span><span class="text-gray-100">Accueil</span><span class="text-purple-400"></a></li></span><br> | |
| <span class="text-purple-400"><li><a</span> <span class="text-green-400">href=</span><span class="text-yellow-300">"#"</span><span class="text-purple-400">></span><span class="text-gray-100">Services</span><span class="text-purple-400"></a></li></span><br> | |
| <span class="text-purple-400"><li><a</span> <span class="text-green-400">href=</span><span class="text-yellow-300">"#"</span><span class="text-purple-400">></span><span class="text-gray-100">Contact</span><span class="text-purple-400"></a></li></span><br> | |
| <span class="text-purple-400"></ul></span><br> | |
| <span class="text-purple-400"></nav></span><br> | |
| <span class="text-purple-400"></header></span><br> | |
| <span class="text-purple-400"><main></span><br> | |
| <span class="text-purple-400"><section</span> <span class="text-green-400">class=</span><span class="text-yellow-300">"hero"</span><span class="text-purple-400">></span><br> | |
| <span class="text-purple-400"><h1></span><span class="text-gray-100">Bienvenue sur notre site professionnel</span><span class="text-purple-400"></h1></span><br> | |
| <span class="text-purple-400"><p></span><span class="text-gray-100">Nous créons des solutions web sur mesure pour votre entreprise.</span><span class="text-purple-400"></p></span><br> | |
| <span class="text-purple-400"><a</span> <span class="text-green-400">href=</span><span class="text-yellow-300">"#"</span> <span class="text-green-400">class=</span><span class="text-yellow-300">"btn"</span><span class="text-purple-400">></span><span class="text-gray-100">En savoir plus</span><span class="text-purple-400"></a></span><br> | |
| <span class="text-purple-400"></section></span><br> | |
| <span class="text-purple-400"></main></span><br> | |
| <span class="text-purple-400"></body></span><br> | |
| <span class="text-purple-400"></html></span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Main Content --> | |
| <main class="mt-32"> | |
| <!-- Generator Section --> | |
| <section class="container mx-auto px-4 py-16"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold mb-4">Générateur Automatique de Sites Professionnels</h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Notre système robotisé crée des sites complets avec plus de 1500 lignes de code optimisé, plusieurs pages et une structure professionnelle.</p> | |
| </div> | |
| <div class="flex flex-col lg:flex-row gap-8"> | |
| <!-- Configuration Panel --> | |
| <div class="lg:w-1/3 bg-white rounded-xl shadow-lg p-6"> | |
| <h3 class="text-2xl font-bold mb-6 text-purple-700">Configuration du Site</h3> | |
| <div class="mb-6"> | |
| <label class="block text-gray-700 mb-2">Type de Site</label> | |
| <select class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-purple-500"> | |
| <option>Site d'Entreprise</option> | |
| <option>Portfolio Professionnel</option> | |
| <option>Boutique en Ligne</option> | |
| <option>Site d'Actualités</option> | |
| <option>Application Web</option> | |
| </select> | |
| </div> | |
| <div class="mb-6"> | |
| <label class="block text-gray-700 mb-2">Nombre de Pages</label> | |
| <div class="flex items-center"> | |
| <input type="range" min="3" max="20" value="5" class="w-full mr-4"> | |
| <span class="text-lg font-bold">5</span> | |
| </div> | |
| </div> | |
| <div class="mb-6"> | |
| <label class="block text-gray-700 mb-2">Style Visuel</label> | |
| <div class="grid grid-cols-3 gap-2"> | |
| <button class="p-2 border rounded-lg hover:border-purple-500"> | |
| <div class="h-8 bg-gradient-to-r from-blue-500 to-blue-700 rounded"></div> | |
| <span class="text-xs mt-1">Professionnel</span> | |
| </button> | |
| <button class="p-2 border rounded-lg hover:border-purple-500"> | |
| <div class="h-8 bg-gradient-to-r from-purple-500 to-pink-500 rounded"></div> | |
| <span class="text-xs mt-1">Moderne</span> | |
| </button> | |
| <button class="p-2 border rounded-lg hover:border-purple-500"> | |
| <div class="h-8 bg-gradient-to-r from-green-500 to-teal-500 rounded"></div> | |
| <span class="text-xs mt-1">Naturel</span> | |
| </button> | |
| <button class="p-2 border rounded-lg hover:border-purple-500"> | |
| <div class="h-8 bg-gradient-to-r from-red-500 to-orange-500 rounded"></div> | |
| <span class="text-xs mt-1">Énergique</span> | |
| </button> | |
| <button class="p-2 border rounded-lg hover:border-purple-500"> | |
| <div class="h-8 bg-gradient-to-r from-gray-700 to-gray-900 rounded"></div> | |
| <span class="text-xs mt-1">Minimaliste</span> | |
| </button> | |
| <button class="p-2 border rounded-lg hover:border-purple-500"> | |
| <div class="h-8 bg-gradient-to-r from-yellow-400 to-red-500 rounded"></div> | |
| <span class="text-xs mt-1">Audacieux</span> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="mb-6"> | |
| <label class="block text-gray-700 mb-2">Fonctionnalités</label> | |
| <div class="space-y-2"> | |
| <label class="flex items-center"> | |
| <input type="checkbox" class="rounded text-purple-500" checked> | |
| <span class="ml-2">Formulaire de Contact</span> | |
| </label> | |
| <label class="flex items-center"> | |
| <input type="checkbox" class="rounded text-purple-500" checked> | |
| <span class="ml-2">Galerie d'Images</span> | |
| </label> | |
| <label class="flex items-center"> | |
| <input type="checkbox" class="rounded text-purple-500"> | |
| <span class="ml-2">Blog Intégré</span> | |
| </label> | |
| <label class="flex items-center"> | |
| <input type="checkbox" class="rounded text-purple-500"> | |
| <span class="ml-2">Système de Réservation</span> | |
| </label> | |
| <label class="flex items-center"> | |
| <input type="checkbox" class="rounded text-purple-500"> | |
| <span class="ml-2">E-commerce</span> | |
| </label> | |
| </div> | |
| </div> | |
| <div class="mb-6"> | |
| <label class="block text-gray-700 mb-2">Contenu du Site</label> | |
| <textarea class="w-full p-3 border border-gray-300 rounded-lg h-32 focus:ring-2 focus:ring-purple-500 focus:border-purple-500" placeholder="Décrivez votre entreprise, services, produits..."></textarea> | |
| </div> | |
| <button class="w-full bg-purple-600 text-white py-3 px-6 rounded-lg font-bold hover:bg-purple-700 transition flex items-center justify-center"> | |
| <i class="fas fa-bolt mr-2"></i> Générer le Site | |
| </button> | |
| </div> | |
| <!-- Preview and Generation --> | |
| <div class="lg:w-2/3"> | |
| <div class="bg-white rounded-xl shadow-lg overflow-hidden"> | |
| <div class="p-4 bg-gray-800 flex items-center"> | |
| <div class="flex space-x-2 mr-4"> | |
| <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="text-white text-sm">Prévisualisation en temps réel</div> | |
| </div> | |
| <div class="p-6 preview-window"> | |
| <div class="flex justify-between items-center mb-6"> | |
| <div class="text-xl font-bold">MonSitePro.com</div> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-600 hover:text-purple-600">Accueil</a> | |
| <a href="#" class="text-gray-600 hover:text-purple-600">Services</a> | |
| <a href="#" class="text-gray-600 hover:text-purple-600">À Propos</a> | |
| <a href="#" class="text-gray-600 hover:text-purple-600">Contact</a> | |
| </div> | |
| </div> | |
| <div class="gradient-bg text-white p-8 rounded-lg mb-6 text-center"> | |
| <h1 class="text-3xl font-bold mb-4">Solutions Professionnelles pour Votre Entreprise</h1> | |
| <p class="mb-6">Nous créons des sites web sur mesure avec une technologie de pointe et un design élégant.</p> | |
| <button class="bg-white text-purple-700 px-6 py-2 rounded-lg font-bold">Découvrir nos services</button> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-6 mb-8"> | |
| <div class="border rounded-lg p-4 hover:shadow-md transition"> | |
| <div class="text-purple-600 text-3xl mb-3"><i class="fas fa-laptop-code"></i></div> | |
| <h3 class="font-bold mb-2">Développement Web</h3> | |
| <p class="text-gray-600 text-sm">Sites performants et adaptés à tous les appareils.</p> | |
| </div> | |
| <div class="border rounded-lg p-4 hover:shadow-md transition"> | |
| <div class="text-purple-600 text-3xl mb-3"><i class="fas fa-mobile-alt"></i></div> | |
| <h3 class="font-bold mb-2">Design Responsive</h3> | |
| <p class="text-gray-600 text-sm">Expérience utilisateur optimale sur tous les écrans.</p> | |
| </div> | |
| <div class="border rounded-lg p-4 hover:shadow-md transition"> | |
| <div class="text-purple-600 text-3xl mb-3"><i class="fas fa-chart-line"></i></div> | |
| <h3 class="font-bold mb-2">SEO Avancé</h3> | |
| <p class="text-gray-600 text-sm">Visibilité maximale sur les moteurs de recherche.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Generation Progress --> | |
| <div class="mt-6 bg-white rounded-xl shadow-lg p-6"> | |
| <div class="flex items-center mb-4"> | |
| <div class="ai-chip text-white text-xs px-2 py-1 rounded-full mr-2"> | |
| AI | |
| </div> | |
| <h3 class="font-bold">Génération Automatique en Cours</h3> | |
| </div> | |
| <div class="mb-4"> | |
| <div class="w-full bg-gray-200 rounded-full h-2"> | |
| <div class="progress-bar rounded-full h-2" style="width: 45%"></div> | |
| </div> | |
| <div class="flex justify-between text-sm text-gray-600 mt-1"> | |
| <span>45% complété</span> | |
| <span>723/1500 lignes générées</span> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-4 text-center"> | |
| <div class="p-3 bg-gray-50 rounded-lg"> | |
| <div class="text-purple-600 mb-1"><i class="fas fa-file-code"></i></div> | |
| <div class="text-sm font-medium">Pages HTML</div> | |
| <div class="text-xs text-gray-500">5 fichiers</div> | |
| </div> | |
| <div class="p-3 bg-gray-50 rounded-lg"> | |
| <div class="text-purple-600 mb-1"><i class="fas fa-file-alt"></i></div> | |
| <div class="text-sm font-medium">CSS</div> | |
| <div class="text-xs text-gray-500">3 fichiers</div> | |
| </div> | |
| <div class="p-3 bg-gray-50 rounded-lg"> | |
| <div class="text-purple-600 mb-1"><i class="fas fa-file-code"></i></div> | |
| <div class="text-sm font-medium">JavaScript</div> | |
| <div class="text-xs text-gray-500">2 fichiers</div> | |
| </div> | |
| <div class="p-3 bg-gray-50 rounded-lg"> | |
| <div class="text-purple-600 mb-1"><i class="fas fa-images"></i></div> | |
| <div class="text-sm font-medium">Assets</div> | |
| <div class="text-xs text-gray-500">12 fichiers</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="bg-gray-50 py-16"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold mb-4">Fonctionnalités Puissantes</h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto">Notre générateur automatique crée des sites professionnels avec toutes les fonctionnalités nécessaires.</p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="bg-white rounded-xl p-6 shadow-md feature-card"> | |
| <div class="text-purple-600 text-4xl mb-4"><i class="fas fa-code"></i></div> | |
| <h3 class="text-xl font-bold mb-2">Code Optimisé</h3> | |
| <p class="text-gray-600">Plus de 1500 lignes de code HTML, CSS et JavaScript optimisé pour la performance et le SEO.</p> | |
| </div> | |
| <div class="bg-white rounded-xl p-6 shadow-md feature-card"> | |
| <div class="text-purple-600 text-4xl mb-4"><i class="fas fa-layer-group"></i></div> | |
| <h3 class="text-xl font-bold mb-2">Structure Professionnelle</h3> | |
| <p class="text-gray-600">Architecture de fichiers organisée avec séparation du contenu, style et fonctionnalités.</p> | |
| </div> | |
| <div class="bg-white rounded-xl p-6 shadow-md feature-card"> | |
| <div class="text-purple-600 text-4xl mb-4"><i class="fas fa-mobile-alt"></i></div> | |
| <h3 class="text-xl font-bold mb-2">Design Responsive</h3> | |
| <p class="text-gray-600">Adaptation automatique à tous les appareils avec media queries et grilles flexibles.</p> | |
| </div> | |
| <div class="bg-white rounded-xl p-6 shadow-md feature-card"> | |
| <div class="text-purple-600 text-4xl mb-4"><i class="fas fa-robot"></i></div> | |
| <h3 class="text-xl font-bold mb-2">Génération Automatique</h3> | |
| <p class="text-gray-600">Système robotisé qui crée l'ensemble du site en quelques minutes sans intervention manuelle.</p> | |
| </div> | |
| <div class="bg-white rounded-xl p-6 shadow-md feature-card"> | |
| <div class="text-purple-600 text-4xl mb-4"><i class="fas fa-search"></i></div> | |
| <h3 class="text-xl font-bold mb-2">SEO Intégré</h3> | |
| <p class="text-gray-600">Balises meta, structure sémantique et optimisations pour les moteurs de recherche.</p> | |
| </div> | |
| <div class="bg-white rounded-xl p-6 shadow-md feature-card"> | |
| <div class="text-purple-600 text-4xl mb-4"><i class="fas fa-bolt"></i></div> | |
| <h3 class="text-xl font-bold mb-2">Performances</h3> | |
| <p class="textgray-600">Code minifié, images optimisées et chargement différé pour des temps de chargement ultra-rapides.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- AI Power Section --> | |
| <section class="py-16 gradient-bg text-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col lg:flex-row items-center"> | |
| <div class="lg:w-1/2 mb-8 lg:mb-0 lg:pr-12"> | |
| <h2 class="text-4xl font-bold mb-6">Technologie AI Avancée</h2> | |
| <p class="text-xl mb-6">Notre intelligence artificielle analyse les meilleures pratiques web pour générer des sites optimisés et performants.</p> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <div class="mr-4 mt-1 text-yellow-300"><i class="fas fa-brain"></i></div> | |
| <div> | |
| <h3 class="font-bold text-lg">Apprentissage Automatique</h3> | |
| <p>Notre système s'améliore continuellement en analysant des milliers de sites professionnels.</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="mr-4 mt-1 text-yellow-300"><i class="fas fa-magic"></i></div> | |
| <div> | |
| <h3 class="font-bold text-lg">Génération Intelligente</h3> | |
| <p>Crée du code unique adapté à votre secteur d'activité et à vos besoins spécifiques.</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="mr-4 mt-1 text-yellow-300"><i class="fas fa-shield-alt"></i></div> | |
| <div> | |
| <h3 class="font-bold text-lg">Sécurité Renforcée</h3> | |
| <p>Intègre automatiquement les meilleures pratiques de sécurité web.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="lg:w-1/2 relative"> | |
| <div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg rounded-xl p-8 glow"> | |
| <div class="flex mb-6"> | |
| <div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div> | |
| <div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div> | |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> | |
| </div> | |
| <div class="text-sm font-mono"> | |
| <div class="mb-2"><span class="text-green-400">AI></span> <span class="text-gray-300">Analyse des besoins...</span></div> | |
| <div class="mb-2"><span class="text-green-400">AI></span> <span class="text-gray-300">Création de l'arborescence...</span></div> | |
| <div class="mb-2"><span class="text-green-400">AI></span> <span class="text-gray-300">Génération du HTML (723/1500 lignes)</span></div> | |
| <div class="mb-2"><span class="text-green-400">AI></span> <span class="text-gray-300">Optimisation CSS pour mobile-first</span></div> | |
| <div class="mb-2"><span class="text-green-400">AI></span> <span class="text-gray-300">Intégration des fonctionnalités JS</span></div> | |
| <div class="mb-2"><span class="text-green-400">AI></span> <span class="text-gray-300">Vérification des performances...</span></div> | |
| <div class="mb-2"><span class="text-green-400">AI></span> <span class="text-gray-300">Optimisation SEO en cours</span></div> | |
| </div> | |
| <div class="mt-6"> | |
| <div class="w-full bg-gray-700 rounded-full h-2"> | |
| <div class="bg-yellow-400 rounded-full h-2" style="width: 45%"></div> | |
| </div> | |
| <div class="flex justify-between text-xs mt-1"> | |
| <span>Génération en cours</span> | |
| <span>45%</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="absolute -top-10 -left-10 text-6xl opacity-20 rotate"> | |
| <i class="fas fa-cog"></i> | |
| </div> | |
| <div class="absolute -bottom-10 -right-10 text-6xl opacity-20 rotate" style="animation-direction: reverse;"> | |
| <i class="fas fa-cog"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <h2 class="text-4xl font-bold mb-6">Prêt à créer votre site professionnel automatiquement ?</h2> | |
| <p class="text-xl text-gray-600 mb-8 max-w-3xl mx-auto">Générez un site complet avec plus de 1500 lignes de code optimisé en quelques minutes seulement.</p> | |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4"> | |
| <button class="bg-purple-600 text-white px-8 py-4 rounded-lg font-bold hover:bg-purple-700 transition transform hover:scale-105 flex items-center justify-center"> | |
| <i class="fas fa-bolt mr-2"></i> Essai Gratuit | |
| </button> | |
| <button class="border-2 border-purple-600 text-purple-600 px-8 py-4 rounded-lg font-bold hover:bg-purple-50 transition transform hover:scale-105 flex items-center justify-center"> | |
| <i class="fas fa-play-circle mr-2"></i> Voir la Démo | |
| </button> | |
| </div> | |
| <div class="mt-8 flex flex-wrap justify-center gap-4"> | |
| <div class="flex items-center bg-gray-100 px-4 py-2 rounded-full"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| <span>Aucune carte de crédit requise</span> | |
| </div> | |
| <div class="flex items-center bg-gray-100 px-4 py-2 rounded-full"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| <span>Annulation à tout moment</span> | |
| </div> | |
| <div class="flex items-center bg-gray-100 px-4 py-2 rounded-full"> | |
| <i class="fas fa-check-circle text-green-500 mr-2"></i> | |
| <span>Support 24/7</span> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white pt-16 pb-8"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-12"> | |
| <div> | |
| <div class="flex items-center mb-4"> | |
| <i class="fas fa-robot text-2xl mr-2 floating"></i> | |
| <h3 class="text-xl font-bold">Mega Site Generator</h3> | |
| </div> | |
| <p class="text-gray-400">Le générateur automatique de sites professionnels le plus puissant du marché.</p> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Produit</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Fonctionnalités</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Prix</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Exemples</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Ressources</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Tutoriels</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Support</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Contact</h4> | |
| <ul class="space-y-2"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-envelope mr-2 text-gray-400"></i> | |
| <span class="text-gray-400">contact@megasitegenerator.com</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-phone-alt mr-2 text-gray-400"></i> | |
| <span class="text-gray-400">+33 1 23 45 67 89</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-map-marker-alt mr-2 text-gray-400"></i> | |
| <span class="text-gray-400">Paris, France</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <div class="text-gray-400 mb-4 md:mb-0"> | |
| © 2023 Mega Site Generator. Tous droits réservés. | |
| </div> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i class="fab fa-github"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Simple animation for the progress bar | |
| document.addEventListener('DOMContentLoaded', function() { | |
| // Simulate progress | |
| const progressBar = document.querySelector('.progress-bar'); | |
| let progress = 45; | |
| const progressInterval = setInterval(() => { | |
| progress += Math.random() * 2; | |
| if (progress >= 100) { | |
| progress = 100; | |
| clearInterval(progressInterval); | |
| } | |
| progressBar.style.width = `${progress}%`; | |
| // Update the progress text | |
| const progressText = document.querySelector('.progress-bar').parentElement.nextElementSibling; | |
| const linesText = progressText.querySelector('span:first-child'); | |
| const countText = progressText.querySelector('span:last-child'); | |
| linesText.textContent = `${Math.round(progress)}% complété`; | |
| const linesCount = Math.round(1500 * progress / 100); | |
| countText.textContent = `${linesCount}/1500 lignes générées`; | |
| }, 800); | |
| // Simulate AI generation messages | |
| const aiConsole = document.querySelector('.bg-white.bg-opacity-10 .font-mono'); | |
| if (aiConsole) { | |
| const messages = [ | |
| "Analyse des tendances de design...", | |
| "Optimisation des images...", | |
| "Génération des métadonnées SEO...", | |
| "Création du sitemap XML...", | |
| "Vérification de l'accessibilité...", | |
| "Test de compatibilité navigateurs..." | |
| ]; | |
| let messageIndex = 0; | |
| setInterval(() => { | |
| if (messageIndex < messages.length) { | |
| const newMessage = document.createElement('div'); | |
| newMessage.className = 'mb-2'; | |
| newMessage.innerHTML = `<span class="text-green-400">AI></span> <span class="text-gray-300">${messages[messageIndex]}</span>`; | |
| aiConsole.appendChild(newMessage); | |
| messageIndex++; | |
| // Scroll to bottom | |
| aiConsole.scrollTop = aiConsole.scrollHeight; | |
| } | |
| }, 1500); | |
| } | |
| // Range input for page count | |
| const rangeInput = document.querySelector('input[type="range"]'); | |
| if (rangeInput) { | |
| const pageCountDisplay = rangeInput.nextElementSibling; | |
| rangeInput.addEventListener('input', function() { | |
| pageCountDisplay.textContent = this.value; | |
| }); | |
| } | |
| }); | |
| </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/mega-site-generator" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |