ai-site / index.html
docto41's picture
Add 3 files
f490ff8 verified
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Générateur IA de Sites Web Puissants</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% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}
.ai-pulse {
animation: pulse 2s infinite;
}
.float-animation {
animation: float 6s ease-in-out infinite;
}
.holographic {
background: linear-gradient(135deg, rgba(0,255,255,0.1) 0%, rgba(0,150,255,0.2) 50%, rgba(0,100,255,0.1) 100%);
box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
border: 1px solid rgba(0, 255, 255, 0.3);
}
.neon-text {
text-shadow: 0 0 5px #0af, 0 0 10px #0af, 0 0 15px #0af;
}
.code-editor {
font-family: 'Courier New', monospace;
background-color: #1e293b;
color: #f8fafc;
}
.glow-effect {
box-shadow: 0 0 15px rgba(0, 200, 255, 0.7);
}
.holographic-panel {
background: linear-gradient(135deg, rgba(0,50,100,0.2) 0%, rgba(0,100,150,0.3) 50%, rgba(0,50,100,0.2) 100%);
backdrop-filter: blur(10px);
border: 1px solid rgba(0, 200, 255, 0.3);
}
</style>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen overflow-x-hidden">
<!-- Main Navigation -->
<nav class="holographic-panel fixed top-0 left-0 right-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-robot text-2xl text-cyan-400"></i>
<span class="text-xl font-bold neon-text">AI Site Factory 1541</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="#dashboard" class="hover:text-cyan-400 transition">Tableau de bord</a>
<a href="#generator" class="hover:text-cyan-400 transition">Générateur</a>
<a href="#templates" class="hover:text-cyan-400 transition">Modèles</a>
<a href="#pages" class="hover:text-cyan-400 transition">Pages</a>
<a href="#export" class="hover:text-cyan-400 transition">Export</a>
</div>
<div class="flex items-center space-x-4">
<button class="bg-cyan-600 hover:bg-cyan-500 px-4 py-2 rounded-lg glow-effect transition">
<i class="fas fa-bolt mr-2"></i>Créer maintenant
</button>
<button class="text-gray-300 hover:text-white">
<i class="fas fa-cog text-xl"></i>
</button>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="pt-20 pb-10">
<!-- Dashboard Section -->
<section id="dashboard" class="container mx-auto px-4 py-10">
<div class="flex flex-col md:flex-row gap-8">
<!-- Left Panel - AI Controls -->
<div class="w-full md:w-1/3 holographic rounded-xl p-6">
<h2 class="text-2xl font-bold mb-6 neon-text">Contrôle IA</h2>
<div class="mb-6">
<div class="flex justify-between items-center mb-2">
<label class="font-medium">Puissance IA</label>
<span class="text-cyan-400">1541 agents actifs</span>
</div>
<input type="range" min="1" max="100" value="85" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer">
</div>
<div class="mb-6">
<label class="block font-medium mb-2">Type de site</label>
<select class="w-full bg-gray-800 border border-gray-700 rounded-lg p-3 focus:outline-none focus:ring-2 focus:ring-cyan-500">
<option>Corporate Elite</option>
<option>E-commerce Premium</option>
<option>Portfolio Avancé</option>
<option>Application Web</option>
<option>Réseau Social</option>
<option selected>Site Ultra Complet</option>
</select>
</div>
<div class="mb-6">
<label class="block font-medium mb-2">Style visuel</label>
<div class="grid grid-cols-3 gap-3">
<button class="h-12 bg-gradient-to-r from-blue-500 to-blue-700 rounded-lg glow-effect"></button>
<button class="h-12 bg-gradient-to-r from-purple-500 to-pink-600 rounded-lg"></button>
<button class="h-12 bg-gradient-to-r from-green-500 to-teal-600 rounded-lg"></button>
<button class="h-12 bg-gradient-to-r from-red-500 to-yellow-500 rounded-lg"></button>
<button class="h-12 bg-gradient-to-r from-gray-800 to-gray-900 rounded-lg"></button>
<button class="h-12 bg-gradient-to-r from-cyan-400 to-blue-600 rounded-lg glow-effect"></button>
</div>
</div>
<div class="mb-6">
<label class="block font-medium mb-2">Fonctionnalités</label>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-cyan-500">
<span class="ml-2">SEO Automatique</span>
</label>
<label class="flex items-center">
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-cyan-500">
<span class="ml-2">Responsive Design</span>
</label>
<label class="flex items-center">
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-cyan-500">
<span class="ml-2">Animations Avancées</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-cyan-500">
<span class="ml-2">E-commerce</span>
</label>
<label class="flex items-center">
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-cyan-500">
<span class="ml-2">Blog Intégré</span>
</label>
</div>
</div>
<button class="w-full bg-gradient-to-r from-cyan-500 to-blue-600 hover:from-cyan-600 hover:to-blue-700 text-white font-bold py-3 px-4 rounded-lg transition-all duration-300 transform hover:scale-105 glow-effect">
<i class="fas fa-magic mr-2"></i>Générer Automatiquement
</button>
</div>
<!-- Center Panel - Real-time Preview -->
<div class="w-full md:w-2/3">
<div class="holographic rounded-xl overflow-hidden">
<div class="bg-gray-800 p-4 flex justify-between 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="text-sm text-gray-400">Prévisualisation en temps réel</div>
<div class="text-sm text-cyan-400">www.votresitepro.com</div>
</div>
<div class="h-96 bg-gray-900 relative overflow-auto">
<!-- Real-time preview content will be injected here by JavaScript -->
<div id="site-preview" class="p-4">
<div class="flex justify-center items-center h-full">
<div class="text-center">
<div class="float-animation mb-6">
<i class="fas fa-robot text-6xl text-cyan-400"></i>
</div>
<h3 class="text-2xl font-bold mb-2 neon-text">Générateur de Site IA 1541</h3>
<p class="text-gray-400">Configuration en cours... Les 1541 agents IA travaillent sur votre site</p>
</div>
</div>
</div>
</div>
</div>
<div class="mt-6 grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="holographic rounded-lg p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-lg mb-1">Pages Générées</h3>
<p class="text-cyan-400 text-2xl font-bold">15+</p>
</div>
<i class="fas fa-file-alt text-3xl text-gray-500"></i>
</div>
</div>
<div class="holographic rounded-lg p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-lg mb-1">Lignes de Code</h3>
<p class="text-cyan-400 text-2xl font-bold">3500+</p>
</div>
<i class="fas fa-code text-3xl text-gray-500"></i>
</div>
</div>
<div class="holographic rounded-lg p-4">
<div class="flex justify-between items-start">
<div>
<h3 class="font-bold text-lg mb-1">Temps Estimé</h3>
<p class="text-cyan-400 text-2xl font-bold">2 min</p>
</div>
<i class="fas fa-clock text-3xl text-gray-500"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Generator Section -->
<section id="generator" class="container mx-auto px-4 py-10 bg-gray-800 rounded-xl mt-10">
<h2 class="text-3xl font-bold mb-8 text-center neon-text">Générateur Automatisé de Sites</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Step 1 -->
<div class="holographic rounded-xl p-6 relative overflow-hidden">
<div class="absolute -top-4 -right-4 bg-cyan-500 text-white text-xs font-bold px-3 py-1 rounded-full transform rotate-12">Étape 1</div>
<div class="flex items-center mb-4">
<div class="bg-cyan-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
<i class="fas fa-brain text-white"></i>
</div>
<h3 class="text-xl font-bold">Configuration IA</h3>
</div>
<p class="text-gray-300 mb-4">Nos 1541 agents IA analysent vos besoins et configurent automatiquement l'architecture optimale pour votre site.</p>
<div class="bg-gray-700 rounded-lg p-3 text-sm">
<div class="flex justify-between mb-1">
<span>Analyse terminée</span>
<span>100%</span>
</div>
<div class="w-full bg-gray-600 rounded-full h-2">
<div class="bg-cyan-500 h-2 rounded-full" style="width: 100%"></div>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="holographic rounded-xl p-6 relative overflow-hidden">
<div class="absolute -top-4 -right-4 bg-cyan-500 text-white text-xs font-bold px-3 py-1 rounded-full transform rotate-12">Étape 2</div>
<div class="flex items-center mb-4">
<div class="bg-cyan-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
<i class="fas fa-paint-brush text-white"></i>
</div>
<h3 class="text-xl font-bold">Design Automatisé</h3>
</div>
<p class="text-gray-300 mb-4">Création automatique d'une interface utilisateur futuriste avec animations avancées et design responsive.</p>
<div class="bg-gray-700 rounded-lg p-3 text-sm">
<div class="flex justify-between mb-1">
<span>Design généré</span>
<span>78%</span>
</div>
<div class="w-full bg-gray-600 rounded-full h-2">
<div class="bg-cyan-500 h-2 rounded-full" style="width: 78%"></div>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="holographic rounded-xl p-6 relative overflow-hidden">
<div class="absolute -top-4 -right-4 bg-cyan-500 text-white text-xs font-bold px-3 py-1 rounded-full transform rotate-12">Étape 3</div>
<div class="flex items-center mb-4">
<div class="bg-cyan-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
<i class="fas fa-code text-white"></i>
</div>
<h3 class="text-xl font-bold">Développement Robotisé</h3>
</div>
<p class="text-gray-300 mb-4">Génération automatique de plus de 3500 lignes de code HTML, CSS et JavaScript optimisé.</p>
<div class="bg-gray-700 rounded-lg p-3 text-sm">
<div class="flex justify-between mb-1">
<span>Code généré</span>
<span>65%</span>
</div>
<div class="w-full bg-gray-600 rounded-full h-2">
<div class="bg-cyan-500 h-2 rounded-full" style="width: 65%"></div>
</div>
</div>
</div>
<!-- Step 4 -->
<div class="holographic rounded-xl p-6 relative overflow-hidden">
<div class="absolute -top-4 -right-4 bg-cyan-500 text-white text-xs font-bold px-3 py-1 rounded-full transform rotate-12">Étape 4</div>
<div class="flex items-center mb-4">
<div class="bg-cyan-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
<i class="fas fa-search text-white"></i>
</div>
<h3 class="text-xl font-bold">Optimisation SEO</h3>
</div>
<p class="text-gray-300 mb-4">Configuration automatique du SEO avec méta-tags, sitemap et structure sémantique optimisée.</p>
<div class="bg-gray-700 rounded-lg p-3 text-sm">
<div class="flex justify-between mb-1">
<span>SEO configuré</span>
<span>45%</span>
</div>
<div class="w-full bg-gray-600 rounded-full h-2">
<div class="bg-cyan-500 h-2 rounded-full" style="width: 45%"></div>
</div>
</div>
</div>
<!-- Step 5 -->
<div class="holographic rounded-xl p-6 relative overflow-hidden">
<div class="absolute -top-4 -right-4 bg-cyan-500 text-white text-xs font-bold px-3 py-1 rounded-full transform rotate-12">Étape 5</div>
<div class="flex items-center mb-4">
<div class="bg-cyan-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
<i class="fas fa-mobile-alt text-white"></i>
</div>
<h3 class="text-xl font-bold">Tests Automatisés</h3>
</div>
<p class="text-gray-300 mb-4">Tests complets sur tous les appareils et navigateurs avec correction automatique des problèmes.</p>
<div class="bg-gray-700 rounded-lg p-3 text-sm">
<div class="flex justify-between mb-1">
<span>Tests effectués</span>
<span>32%</span>
</div>
<div class="w-full bg-gray-600 rounded-full h-2">
<div class="bg-cyan-500 h-2 rounded-full" style="width: 32%"></div>
</div>
</div>
</div>
<!-- Step 6 -->
<div class="holographic rounded-xl p-6 relative overflow-hidden">
<div class="absolute -top-4 -right-4 bg-cyan-500 text-white text-xs font-bold px-3 py-1 rounded-full transform rotate-12">Étape 6</div>
<div class="flex items-center mb-4">
<div class="bg-cyan-600 rounded-full w-10 h-10 flex items-center justify-center mr-4">
<i class="fas fa-file-archive text-white"></i>
</div>
<h3 class="text-xl font-bold">Export Automatique</h3>
</div>
<p class="text-gray-300 mb-4">Préparation du package final avec tous les fichiers HTML, CSS, JS et assets en ZIP prêt à déployer.</p>
<div class="bg-gray-700 rounded-lg p-3 text-sm">
<div class="flex justify-between mb-1">
<span>Prêt à exporter</span>
<span>12%</span>
</div>
<div class="w-full bg-gray-600 rounded-full h-2">
<div class="bg-cyan-500 h-2 rounded-full" style="width: 12%"></div>
</div>
</div>
</div>
</div>
<div class="mt-10 text-center">
<button id="generate-site" class="bg-gradient-to-r from-purple-600 to-cyan-500 hover:from-purple-700 hover:to-cyan-600 text-white font-bold py-4 px-8 rounded-full text-lg transition-all duration-300 transform hover:scale-105 glow-effect">
<i class="fas fa-rocket mr-2"></i>LANCER LA GÉNÉRATION COMPLÈTE
</button>
</div>
</section>
<!-- Pages Section -->
<section id="pages" class="container mx-auto px-4 py-10 mt-10">
<h2 class="text-3xl font-bold mb-8 text-center neon-text">Pages Générées Automatiquement</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Page 1 -->
<div class="holographic rounded-xl overflow-hidden transform transition-all hover:scale-105 hover:glow-effect">
<div class="bg-gray-800 p-4 flex justify-between items-center">
<div class="text-cyan-400 font-medium">Accueil</div>
<div class="flex space-x-2">
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-edit"></i></button>
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-cog"></i></button>
</div>
</div>
<div class="bg-gray-900 p-4 h-40 flex items-center justify-center">
<i class="fas fa-home text-4xl text-gray-700"></i>
</div>
<div class="bg-gray-800 p-4 text-sm text-gray-400">
<div class="flex justify-between items-center">
<span>Statut: <span class="text-green-400">Généré</span></span>
<span>Lignes: 420</span>
</div>
</div>
</div>
<!-- Page 2 -->
<div class="holographic rounded-xl overflow-hidden transform transition-all hover:scale-105 hover:glow-effect">
<div class="bg-gray-800 p-4 flex justify-between items-center">
<div class="text-cyan-400 font-medium">À propos</div>
<div class="flex space-x-2">
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-edit"></i></button>
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-cog"></i></button>
</div>
</div>
<div class="bg-gray-900 p-4 h-40 flex items-center justify-center">
<i class="fas fa-info-circle text-4xl text-gray-700"></i>
</div>
<div class="bg-gray-800 p-4 text-sm text-gray-400">
<div class="flex justify-between items-center">
<span>Statut: <span class="text-green-400">Généré</span></span>
<span>Lignes: 380</span>
</div>
</div>
</div>
<!-- Page 3 -->
<div class="holographic rounded-xl overflow-hidden transform transition-all hover:scale-105 hover:glow-effect">
<div class="bg-gray-800 p-4 flex justify-between items-center">
<div class="text-cyan-400 font-medium">Services</div>
<div class="flex space-x-2">
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-edit"></i></button>
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-cog"></i></button>
</div>
</div>
<div class="bg-gray-900 p-4 h-40 flex items-center justify-center">
<i class="fas fa-concierge-bell text-4xl text-gray-700"></i>
</div>
<div class="bg-gray-800 p-4 text-sm text-gray-400">
<div class="flex justify-between items-center">
<span>Statut: <span class="text-green-400">Généré</span></span>
<span>Lignes: 520</span>
</div>
</div>
</div>
<!-- Page 4 -->
<div class="holographic rounded-xl overflow-hidden transform transition-all hover:scale-105 hover:glow-effect">
<div class="bg-gray-800 p-4 flex justify-between items-center">
<div class="text-cyan-400 font-medium">Portfolio</div>
<div class="flex space-x-2">
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-edit"></i></button>
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-cog"></i></button>
</div>
</div>
<div class="bg-gray-900 p-4 h-40 flex items-center justify-center">
<i class="fas fa-briefcase text-4xl text-gray-700"></i>
</div>
<div class="bg-gray-800 p-4 text-sm text-gray-400">
<div class="flex justify-between items-center">
<span>Statut: <span class="text-yellow-400">En cours</span></span>
<span>Lignes: 610</span>
</div>
</div>
</div>
<!-- Page 5 -->
<div class="holographic rounded-xl overflow-hidden transform transition-all hover:scale-105 hover:glow-effect">
<div class="bg-gray-800 p-4 flex justify-between items-center">
<div class="text-cyan-400 font-medium">Blog</div>
<div class="flex space-x-2">
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-edit"></i></button>
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-cog"></i></button>
</div>
</div>
<div class="bg-gray-900 p-4 h-40 flex items-center justify-center">
<i class="fas fa-newspaper text-4xl text-gray-700"></i>
</div>
<div class="bg-gray-800 p-4 text-sm text-gray-400">
<div class="flex justify-between items-center">
<span>Statut: <span class="text-yellow-400">En cours</span></span>
<span>Lignes: 780</span>
</div>
</div>
</div>
<!-- Page 6 -->
<div class="holographic rounded-xl overflow-hidden transform transition-all hover:scale-105 hover:glow-effect">
<div class="bg-gray-800 p-4 flex justify-between items-center">
<div class="text-cyan-400 font-medium">Contact</div>
<div class="flex space-x-2">
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-edit"></i></button>
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-cog"></i></button>
</div>
</div>
<div class="bg-gray-900 p-4 h-40 flex items-center justify-center">
<i class="fas fa-envelope text-4xl text-gray-700"></i>
</div>
<div class="bg-gray-800 p-4 text-sm text-gray-400">
<div class="flex justify-between items-center">
<span>Statut: <span class="text-blue-400">En attente</span></span>
<span>Lignes: 450</span>
</div>
</div>
</div>
<!-- Page 7 -->
<div class="holographic rounded-xl overflow-hidden transform transition-all hover:scale-105 hover:glow-effect">
<div class="bg-gray-800 p-4 flex justify-between items-center">
<div class="text-cyan-400 font-medium">Équipe</div>
<div class="flex space-x-2">
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-edit"></i></button>
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-cog"></i></button>
</div>
</div>
<div class="bg-gray-900 p-4 h-40 flex items-center justify-center">
<i class="fas fa-users text-4xl text-gray-700"></i>
</div>
<div class="bg-gray-800 p-4 text-sm text-gray-400">
<div class="flex justify-between items-center">
<span>Statut: <span class="text-blue-400">En attente</span></span>
<span>Lignes: 490</span>
</div>
</div>
</div>
<!-- Page 8 -->
<div class="holographic rounded-xl overflow-hidden transform transition-all hover:scale-105 hover:glow-effect">
<div class="bg-gray-800 p-4 flex justify-between items-center">
<div class="text-cyan-400 font-medium">Témoignages</div>
<div class="flex space-x-2">
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-edit"></i></button>
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-cog"></i></button>
</div>
</div>
<div class="bg-gray-900 p-4 h-40 flex items-center justify-center">
<i class="fas fa-comments text-4xl text-gray-700"></i>
</div>
<div class="bg-gray-800 p-4 text-sm text-gray-400">
<div class="flex justify-between items-center">
<span>Statut: <span class="text-blue-400">En attente</span></span>
<span>Lignes: 370</span>
</div>
</div>
</div>
<!-- Page 9 -->
<div class="holographic rounded-xl overflow-hidden transform transition-all hover:scale-105 hover:glow-effect">
<div class="bg-gray-800 p-4 flex justify-between items-center">
<div class="text-cyan-400 font-medium">FAQ</div>
<div class="flex space-x-2">
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-edit"></i></button>
<button class="text-gray-400 hover:text-cyan-400"><i class="fas fa-cog"></i></button>
</div>
</div>
<div class="bg-gray-900 p-4 h-40 flex items-center justify-center">
<i class="fas fa-question-circle text-4xl text-gray-700"></i>
</div>
<div class="bg-gray-800 p-4 text-sm text-gray-400">
<div class="flex justify-between items-center">
<span>Statut: <span class="text-blue-400">En attente</span></span>
<span>Lignes: 410</span>
</div>
</div>
</div>
</div>
<div class="mt-8 text-center">
<button class="border-2 border-cyan-500 text-cyan-400 hover:bg-cyan-500 hover:text-white font-bold py-2 px-6 rounded-full transition">
<i class="fas fa-plus mr-2"></i>Ajouter une Page Personnalisée
</button>
</div>
</section>
<!-- Export Section -->
<section id="export" class="container mx-auto px-4 py-10 mt-10 bg-gray-800 rounded-xl">
<h2 class="text-3xl font-bold mb-8 text-center neon-text">Export Automatisé</h2>
<div class="max-w-3xl mx-auto">
<div class="holographic rounded-xl p-6 mb-8">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i class="fas fa-file-export text-cyan-400 mr-3"></i>Options d'Export
</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<label class="block font-medium mb-2">Format</label>
<select class="w-full bg-gray-700 border border-gray-600 rounded-lg p-3 focus:outline-none focus:ring-2 focus:ring-cyan-500">
<option>HTML complet (ZIP)</option>
<option>Fichiers séparés</option>
<option>Template CMS</option>
<option>Site statique</option>
</select>
</div>
<div>
<label class="block font-medium mb-2">Compression</label>
<select class="w-full bg-gray-700 border border-gray-600 rounded-lg p-3 focus:outline-none focus:ring-2 focus:ring-cyan-500">
<option>Optimisé (recommandé)</option>
<option>Non compressé</option>
<option>Ultra compressé</option>
</select>
</div>
</div>
<div class="mb-6">
<label class="block font-medium mb-2">Inclusions</label>
<div class="grid grid-cols-2 md:grid-cols-3 gap-3">
<label class="flex items-center">
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-cyan-500">
<span class="ml-2">Assets</span>
</label>
<label class="flex items-center">
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-cyan-500">
<span class="ml-2">Documentation</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="form-checkbox h-5 w-5 text-cyan-500">
<span class="ml-2">Code source</span>
</label>
<label class="flex items-center">
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-cyan-500">
<span class="ml-2">Fichiers SEO</span>
</label>
<label class="flex items-center">
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-cyan-500">
<span class="ml-2">Licence</span>
</label>
</div>
</div>
<div class="bg-gray-700 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="font-medium">Taille estimée:</span>
<span class="text-cyan-400 font-bold">4.7 MB</span>
</div>
<div class="flex justify-between items-center">
<span class="font-medium">Fichiers:</span>
<span class="text-cyan-400 font-bold">87 fichiers</span>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<button id="export-html" class="holographic rounded-xl p-6 text-left hover:glow-effect transition group">
<div class="flex items-center mb-3">
<div class="bg-blue-600 rounded-lg p-3 mr-4 group-hover:bg-blue-500 transition">
<i class="fas fa-file-code text-white text-xl"></i>
</div>
<h3 class="text-xl font-bold">Exporter en HTML</h3>
</div>
<p class="text-gray-400">Téléchargez tous les fichiers HTML prêts à être déployés sur n'importe quel hébergement web.</p>
</button>
<button id="export-zip" class="holographic rounded-xl p-6 text-left hover:glow-effect transition group">
<div class="flex items-center mb-3">
<div class="bg-green-600 rounded-lg p-3 mr-4 group-hover:bg-green-500 transition">
<i class="fas fa-file-archive text-white text-xl"></i>
</div>
<h3 class="text-xl font-bold">Exporter en ZIP</h3>
</div>
<p class="text-gray-400">Package complet avec tous les fichiers compressés pour un transfert facile.</p>
</button>
</div>
</div>
</section>
<!-- AI Agents Visualization -->
<section class="container mx-auto px-4 py-16 mt-10">
<div class="holographic rounded-xl p-8 text-center">
<h2 class="text-3xl font-bold mb-6 neon-text">1541 Agents IA en Action</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto mb-10">Notre réseau de 1541 intelligences artificielles spécialisées travaille en synergie pour créer votre site web parfait en temps réel.</p>
<div class="relative h-64 md:h-96">
<!-- AI agents visualization will be added here with JavaScript -->
<div id="ai-agents-visualization" class="absolute inset-0 flex items-center justify-center">
<div class="text-center">
<div class="inline-block ai-pulse">
<i class="fas fa-robot text-6xl text-cyan-400 mb-4"></i>
</div>
<h3 class="text-2xl font-bold mb-2">Agents IA Actifs</h3>
<div class="text-5xl font-bold text-cyan-400 mb-2">1541</div>
<p class="text-gray-400">agents spécialisés travaillent sur votre projet</p>
</div>
</div>
</div>
<div class="mt-10 grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="bg-gray-800 rounded-lg p-4">
<div class="text-cyan-400 text-3xl font-bold mb-2">642</div>
<div class="text-gray-400">Agents Design</div>
</div>
<div class="bg-gray-800 rounded-lg p-4">
<div class="text-cyan-400 text-3xl font-bold mb-2">478</div>
<div class="text-gray-400">Agents Code</div>
</div>
<div class="bg-gray-800 rounded-lg p-4">
<div class="text-cyan-400 text-3xl font-bold mb-2">256</div>
<div class="text-gray-400">Agents SEO</div>
</div>
<div class="bg-gray-800 rounded-lg p-4">
<div class="text-cyan-400 text-3xl font-bold mb-2">165</div>
<div class="text-gray-400">Agents Test</div>
</div>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer class="holographic-panel border-t border-gray-800">
<div class="container mx-auto px-4 py-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center space-x-2 mb-4 md:mb-0">
<i class="fas fa-robot text-2xl text-cyan-400"></i>
<span class="text-xl font-bold">AI Site Factory 1541</span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-cyan-400">Conditions</a>
<a href="#" class="text-gray-400 hover:text-cyan-400">Confidentialité</a>
<a href="#" class="text-gray-400 hover:text-cyan-400">Contact</a>
</div>
</div>
<div class="mt-6 pt-6 border-t border-gray-800 text-center text-gray-500 text-sm">
&copy; 2023 Générateur Automatisé de Sites Web par IA. Tous droits réservés.
</div>
</div>
</footer>
<!-- Scripts -->
<script>
// Simulate site generation process
document.getElementById('generate-site').addEventListener('click', function() {
// Show loading state
const preview = document.getElementById('site-preview');
preview.innerHTML = `
<div class="flex justify-center items-center h-full">
<div class="text-center">
<div class="spinner mb-6 mx-auto">
<i class="fas fa-cog fa-spin text-4xl text-cyan-400"></i>
</div>
<h3 class="text-2xl font-bold mb-2">Génération en cours</h3>
<p class="text-gray-400">Les 1541 agents IA créent votre site ultra complet...</p>
<div class="mt-6 w-full bg-gray-800 rounded-full h-2">
<div id="generation-progress" class="bg-gradient-to-r from-cyan-500 to-blue-600 h-2 rounded-full" style="width: 0%"></div>
</div>
</div>
</div>
`;
// Simulate progress
let progress = 0;
const interval = setInterval(() => {
progress += 1;
document.getElementById('generation-progress').style.width = progress + '%';
if (progress >= 100) {
clearInterval(interval);
// Show completed site
generateCompletedSite();
}
}, 50);
});
function generateCompletedSite() {
const preview = document.getElementById('site-preview');
preview.innerHTML = `
<div class="text-white">
<header class="bg-gradient-to-r from-cyan-600 to-blue-700 p-6">
<div class="container mx-auto flex justify-between items-center">
<div class="text-2xl font-bold">MonSitePro</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="hover:text-cyan-300">Accueil</a>
<a href="#" class="hover:text-cyan-300">Services</a>
<a href="#" class="hover:text-cyan-300">Portfolio</a>
<a href="#" class="hover:text-cyan-300">Contact</a>
</nav>
<button class="md:hidden">
<i class="fas fa-bars"></i>
</button>
</div>
</header>
<main class="p-6">
<section class="container mx-auto py-12 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Bienvenue sur votre nouveau site</h1>
<p class="text-xl text-gray-300 max-w-2xl mx-auto mb-8">Généré automatiquement par 1541 agents IA avec plus de 3500 lignes de code optimisé.</p>
<button class="bg-white text-cyan-600 hover:bg-gray-100 font-bold py-3 px-8 rounded-full transition">
Découvrir nos services
</button>
</section>
<section class="container mx-auto py-12 grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-800 p-6 rounded-xl hover:transform hover:scale-105 transition">
<div class="text-cyan-400 text-3xl mb-4">
<i class="fas fa-rocket"></i>
</div>
<h3 class="text-xl font-bold mb-3">Performance</h3>
<p class="text-gray-400">Code optimisé pour des temps de chargement ultra rapides.</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl hover:transform hover:scale-105 transition">
<div class="text-cyan-400 text-3xl mb-4">
<i class="fas fa-mobile-alt"></i>
</div>
<h3 class="text-xl font-bold mb-3">Responsive</h3>
<p class="text-gray-400">Adapté à tous les appareils, du mobile au desktop.</p>
</div>
<div class="bg-gray-800 p-6 rounded-xl hover:transform hover:scale-105 transition">
<div class="text-cyan-400 text-3xl mb-4">
<i class="fas fa-search"></i>
</div>
<h3 class="text-xl font-bold mb-3">SEO</h3>
<p class="text-gray-400">Optimisé pour les moteurs de recherche dès la génération.</p>
</div>
</section>
</main>
<footer class="bg-gray-800 p-6 text-center">
<p>© 2023 MonSitePro - Généré par AI Site Factory 1541</p>
</footer>
</div>
`;
// Show success notification
alert('Site généré avec succès! 15 pages créées avec 3500+ lignes de code. Prêt à exporter.');
}
// Export functionality
document.getElementById('export-html').addEventListener('click', function() {
// In a real app, this would trigger a file download
alert('Export HTML initié! Téléchargement du site complet en HTML.');
});
document.getElementById('export-zip').addEventListener('click', function() {
// In a real app, this would trigger a ZIP file download
alert('Export ZIP initié! Téléchargement de l\'archive complète.');
});
// AI agents visualization animation
const aiContainer = document.getElementById('ai-agents-visualization');
setInterval(() => {
// Create floating AI agent icons
const agent = document.createElement('div');
agent.className = 'absolute text-cyan-400 opacity-70';
agent.innerHTML = '<i class="fas fa-robot"></i>';
agent.style.left = Math.random() * 100 + '%';
agent.style.top = Math.random() * 100 + '%';
agent.style.fontSize = (Math.random() * 20 + 10) + 'px';
agent.style.animation = `float ${Math.random() * 6 + 3}s ease-in-out infinite`;
aiContainer.appendChild(agent);
// Remove old agents to prevent memory issues
if (aiContainer.children.length > 30) {
aiContainer.removeChild(aiContainer.children[0]);
}
}, 300);
</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/ai-site" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>