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 AI - Accès Gratuit</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> | |
| @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap'); | |
| :root { | |
| --primary: #6d28d9; | |
| --secondary: #10b981; | |
| --dark: #1e293b; | |
| --light: #f8fafc; | |
| --accent: #f59e0b; | |
| } | |
| body { | |
| font-family: 'Roboto', sans-serif; | |
| background-color: var(--dark); | |
| color: var(--light); | |
| overflow-x: hidden; | |
| } | |
| .tech-font { | |
| font-family: 'Orbitron', sans-serif; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, var(--primary), var(--secondary)); | |
| } | |
| .neon-text { | |
| text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--secondary), 0 0 20px var(--secondary); | |
| } | |
| .ai-card { | |
| transition: all 0.3s ease; | |
| border: 1px solid rgba(255, 255, 255, 0.1); | |
| background: rgba(30, 41, 59, 0.7); | |
| backdrop-filter: blur(10px); | |
| } | |
| .ai-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); | |
| border-color: var(--secondary); | |
| } | |
| .pulse { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } | |
| 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } | |
| 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } | |
| } | |
| .glow { | |
| animation: glow 3s ease-in-out infinite alternate; | |
| } | |
| @keyframes glow { | |
| from { box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--secondary), 0 0 20px var(--secondary); } | |
| to { box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--primary), 0 0 40px var(--primary); } | |
| } | |
| .terminal { | |
| background-color: #011627; | |
| border-radius: 0.5rem; | |
| font-family: 'Courier New', monospace; | |
| position: relative; | |
| } | |
| .terminal-header { | |
| background-color: #1a2a3a; | |
| border-top-left-radius: 0.5rem; | |
| border-top-right-radius: 0.5rem; | |
| padding: 0.5rem 1rem; | |
| } | |
| .terminal-body { | |
| padding: 1rem; | |
| height: 300px; | |
| overflow-y: auto; | |
| } | |
| .command-line { | |
| display: flex; | |
| align-items: center; | |
| margin-bottom: 0.5rem; | |
| } | |
| .prompt { | |
| color: var(--secondary); | |
| margin-right: 0.5rem; | |
| } | |
| .command { | |
| color: white; | |
| flex-grow: 1; | |
| } | |
| .response { | |
| color: #d6deeb; | |
| margin-bottom: 1rem; | |
| line-height: 1.5; | |
| } | |
| .blink { | |
| animation: blink 1s step-end infinite; | |
| } | |
| @keyframes blink { | |
| from, to { opacity: 1; } | |
| 50% { opacity: 0; } | |
| } | |
| .grid-pattern { | |
| background-image: | |
| linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px); | |
| background-size: 20px 20px; | |
| } | |
| .required-field::after { | |
| content: " *"; | |
| color: #ef4444; | |
| } | |
| a, button { | |
| cursor: pointer; | |
| transition: all 0.3s ease; | |
| } | |
| .ai-specialist-btn { | |
| display: inline-block; | |
| padding: 0.5rem 1rem; | |
| margin-top: 1rem; | |
| background: rgba(109, 40, 217, 0.2); | |
| border: 1px solid rgba(109, 40, 217, 0.5); | |
| color: white; | |
| border-radius: 0.25rem; | |
| font-size: 0.875rem; | |
| text-align: center; | |
| } | |
| .ai-specialist-btn:hover { | |
| background: rgba(109, 40, 217, 0.4); | |
| border-color: rgba(109, 40, 217, 0.8); | |
| transform: translateY(-2px); | |
| } | |
| .ai-cluster { | |
| position: relative; | |
| height: 300px; | |
| width: 100%; | |
| overflow: hidden; | |
| border-radius: 1rem; | |
| } | |
| .ai-node { | |
| position: absolute; | |
| border-radius: 50%; | |
| background: rgba(109, 40, 217, 0.7); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: white; | |
| font-size: 0.8rem; | |
| box-shadow: 0 0 10px rgba(109, 40, 217, 0.5); | |
| transition: all 0.5s ease; | |
| } | |
| .ai-node:hover { | |
| transform: scale(1.5); | |
| z-index: 10; | |
| background: rgba(16, 185, 129, 0.7); | |
| box-shadow: 0 0 20px rgba(16, 185, 129, 0.7); | |
| } | |
| .ai-connection { | |
| position: absolute; | |
| background: rgba(255, 255, 255, 0.1); | |
| } | |
| .assistant-card { | |
| border-left: 4px solid var(--primary); | |
| transition: all 0.3s ease; | |
| } | |
| .assistant-card:hover { | |
| transform: translateX(5px); | |
| border-left-color: var(--secondary); | |
| } | |
| /* Modal styles */ | |
| .modal { | |
| display: none; | |
| position: fixed; | |
| z-index: 100; | |
| left: 0; | |
| top: 0; | |
| width: 100%; | |
| height: 100%; | |
| background-color: rgba(0,0,0,0.8); | |
| } | |
| .modal-content { | |
| background-color: #1e293b; | |
| margin: 15% auto; | |
| padding: 20px; | |
| border: 1px solid #6d28d9; | |
| width: 80%; | |
| max-width: 500px; | |
| border-radius: 10px; | |
| box-shadow: 0 0 20px rgba(109, 40, 217, 0.7); | |
| } | |
| .close { | |
| color: #aaa; | |
| float: right; | |
| font-size: 28px; | |
| font-weight: bold; | |
| cursor: pointer; | |
| } | |
| .close:hover { | |
| color: white; | |
| } | |
| </style> | |
| </head> | |
| <body class="grid-pattern"> | |
| <!-- Accès Gratuit Modal --> | |
| <div id="accessModal" class="modal"> | |
| <div class="modal-content"> | |
| <span class="close">×</span> | |
| <h2 class="text-2xl font-bold text-white mb-4 tech-font">Accès Gratuit VIP</h2> | |
| <p class="text-gray-300 mb-6">Entrez votre email ou code spécial pour un accès complet gratuit à la plateforme:</p> | |
| <form id="freeAccessForm"> | |
| <div class="mb-4"> | |
| <label for="accessEmail" class="block text-sm font-medium text-gray-300 mb-2">Email ou Code Spécial</label> | |
| <input type="text" id="accessEmail" class="w-full px-3 py-2 bg-gray-700 border border-gray-600 rounded-md text-white" placeholder="votre@email.com ou CODE1234"> | |
| </div> | |
| <button type="submit" class="w-full bg-purple-600 hover:bg-purple-700 text-white font-bold py-2 px-4 rounded"> | |
| <i class="fas fa-unlock-alt mr-2"></i> Accéder Gratuitement | |
| </button> | |
| </form> | |
| <div id="accessSuccess" class="hidden mt-4 p-4 bg-green-900 text-green-200 rounded"> | |
| <i class="fas fa-check-circle mr-2"></i> Accès autorisé! Chargement de la plateforme... | |
| </div> | |
| <div id="accessError" class="hidden mt-4 p-4 bg-red-900 text-red-200 rounded"> | |
| <i class="fas fa-times-circle mr-2"></i> Accès refusé. Code/email invalide. | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Navigation --> | |
| <nav class="bg-gray-900 bg-opacity-90 backdrop-filter backdrop-blur-lg fixed w-full z-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex items-center justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <span class="text-2xl font-bold tech-font"> | |
| <span class="text-purple-500">Mega</span> <span class="text-emerald-400">Site</span> <span class="text-orange-400">AI</span> | |
| </span> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-10 flex items-baseline space-x-4"> | |
| <a href="#home" class="text-white px-3 py-2 rounded-md text-sm font-medium">Accueil</a> | |
| <a href="#features" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Fonctionnalités</a> | |
| <a href="#army" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Armée d'IA</a> | |
| <a href="#assistants" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Assistants</a> | |
| <a href="#api" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">API</a> | |
| <a href="#contact" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Contact</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-4 flex items-center md:ml-6"> | |
| <button id="freeAccessBtn" class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-md text-sm font-medium flex items-center"> | |
| <i class="fas fa-crown mr-2"></i> Accès Gratuit | |
| </button> | |
| </div> | |
| </div> | |
| <div class="-mr-2 flex md:hidden"> | |
| <button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none"> | |
| <span class="sr-only">Open main menu</span> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <div id="home" class="relative pt-32 pb-20 px-4 sm:px-6 lg:pt-40 lg:pb-28 lg:px-8"> | |
| <div class="absolute inset-0"> | |
| <div class="h-1/3 sm:h-2/3 gradient-bg"></div> | |
| </div> | |
| <div class="relative max-w-7xl mx-auto"> | |
| <div class="text-center"> | |
| <h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl tech-font"> | |
| <span class="block neon-text">Accès Gratuit VIP Activé</span> | |
| <span class="block text-transparent bg-clip-text gradient-bg">Bienvenue dans votre espace privé</span> | |
| </h1> | |
| <p class="mt-3 max-w-md mx-auto text-base text-gray-300 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl"> | |
| Vous avez un accès complet à toutes les 1024 intelligences artificielles et 20 assistants personnels. | |
| </p> | |
| <div class="mt-10 sm:flex sm:justify-center"> | |
| <div class="rounded-md shadow"> | |
| <a href="#army" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-600 hover:bg-purple-700 md:py-4 md:text-lg md:px-10"> | |
| Explorer les IA | |
| </a> | |
| </div> | |
| <div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3"> | |
| <a href="#assistants" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-purple-600 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10"> | |
| Voir les assistants | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- AI Cluster Visualization --> | |
| <div class="py-12 bg-gray-900 bg-opacity-80"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl tech-font"> | |
| Réseau Neuronal Quantique | |
| </h2> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-300 lg:mx-auto"> | |
| Visualisation en temps réel des 1024 IA interconnectées dans votre cluster quantique privé | |
| </p> | |
| </div> | |
| <div class="ai-cluster bg-gray-800"> | |
| <!-- AI nodes will be generated by JavaScript --> | |
| </div> | |
| <div class="mt-8 grid grid-cols-1 md:grid-cols-3 gap-8 text-center"> | |
| <div class="bg-gray-800 bg-opacity-70 p-6 rounded-lg"> | |
| <div class="text-5xl font-bold text-purple-400 tech-font">1024</div> | |
| <div class="mt-2 text-lg font-medium text-white">IA Spécialisées</div> | |
| <p class="mt-2 text-gray-300">Accès complet activé</p> | |
| </div> | |
| <div class="bg-gray-800 bg-opacity-70 p-6 rounded-lg"> | |
| <div class="text-5xl font-bold text-emerald-400 tech-font">20</div> | |
| <div class="mt-2 text-lg font-medium text-white">Assistants IA</div> | |
| <p class="mt-2 text-gray-300">À votre service 24/7</p> | |
| </div> | |
| <div class="bg-gray-800 bg-opacity-70 p-6 rounded-lg"> | |
| <div class="text-5xl font-bold text-orange-400 tech-font">∞</div> | |
| <div class="mt-2 text-lg font-medium text-white">Combinaisons</div> | |
| <p class="mt-2 text-gray-300">Sans limitations</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- AI Army Grid --> | |
| <div id="army" class="py-12 bg-gray-900 bg-opacity-80"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-purple-400 font-semibold tracking-wide uppercase">Armée d'IA</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl tech-font"> | |
| Vos 1024 Spécialistes en Intelligence Artificielle | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-300 lg:mx-auto"> | |
| Sélectionnez parmi toutes les IA spécialisées - accès VIP activé | |
| </p> | |
| </div> | |
| <div class="mt-10"> | |
| <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3"> | |
| <!-- AI Card 1 --> | |
| <div class="ai-card rounded-lg overflow-hidden shadow-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-purple-500 rounded-full p-3"> | |
| <i class="fas fa-brain text-white text-xl"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Nexus Prime</h3> | |
| <p class="text-purple-300">IA Cognitive Principale</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300"> | |
| L'IA centrale qui orchestre toutes les autres, avec une capacité de raisonnement quantique. | |
| </p> | |
| <div class="mt-3"> | |
| <span class="inline-block bg-purple-900 text-purple-200 text-xs px-2 py-1 rounded-full mr-1">+32 IA associées</span> | |
| <span class="inline-block bg-gray-700 text-gray-300 text-xs px-2 py-1 rounded-full">Niveau 10</span> | |
| </div> | |
| </div> | |
| <div class="ai-specialist-btn w-full mt-4 bg-green-600 hover:bg-green-700"> | |
| <i class="fas fa-unlock mr-2"></i> Accès VIP Activé | |
| </div> | |
| </div> | |
| <!-- AI Card 2 --> | |
| <div class="ai-card rounded-lg overflow-hidden shadow-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-emerald-500 rounded-full p-3"> | |
| <i class="fas fa-chart-line text-white text-xl"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Quantum Predictor</h3> | |
| <p class="text-emerald-300">Système de Prédiction</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300"> | |
| Prédit les tendances futures avec une précision de 99.9% en analysant des milliards de points de données. | |
| </p> | |
| <div class="mt-3"> | |
| <span class="inline-block bg-emerald-900 text-emerald-200 text-xs px-2 py-1 rounded-full mr-1">+28 IA associées</span> | |
| <span class="inline-block bg-gray-700 text-gray-300 text-xs px-2 py-1 rounded-full">Niveau 9</span> | |
| </div> | |
| </div> | |
| <div class="ai-specialist-btn w-full mt-4 bg-green-600 hover:bg-green-700"> | |
| <i class="fas fa-unlock mr-2"></i> Accès VIP Activé | |
| </div> | |
| </div> | |
| <!-- AI Card 3 --> | |
| <div class="ai-card rounded-lg overflow-hidden shadow-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-blue-500 rounded-full p-3"> | |
| <i class="fas fa-robot text-white text-xl"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Neural Creator</h3> | |
| <p class="text-blue-300">Générateur de Contenu</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300"> | |
| Crée du contenu humainement indiscernable en millisecondes, avec une compréhension contextuelle inégalée. | |
| </p> | |
| <div class="mt-3"> | |
| <span class="inline-block bg-blue-900 text-blue-200 text-xs px-2 py-1 rounded-full mr-1">+24 IA associées</span> | |
| <span class="inline-block bg-gray-700 text-gray-300 text-xs px-2 py-1 rounded-full">Niveau 8</span> | |
| </div> | |
| </div> | |
| <div class="ai-specialist-btn w-full mt-4 bg-green-600 hover:bg-green-700"> | |
| <i class="fas fa-unlock mr-2"></i> Accès VIP Activé | |
| </div> | |
| </div> | |
| <!-- AI Card 4 --> | |
| <div class="ai-card rounded-lg overflow-hidden shadow-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-orange-500 rounded-full p-3"> | |
| <i class="fas fa-eye text-white text-xl"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Vision X</h3> | |
| <p class="text-orange-300">Analyse Visuelle</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300"> | |
| Analyse et comprend les images, vidéos et flux visuels avec une précision supérieure à l'œil humain. | |
| </p> | |
| <div class="mt-3"> | |
| <span class="inline-block bg-orange-900 text-orange-200 text-xs px-2 py-1 rounded-full mr-1">+18 IA associées</span> | |
| <span class="inline-block bg-gray-700 text-gray-300 text-xs px-2 py-1 rounded-full">Niveau 9</span> | |
| </div> | |
| </div> | |
| <div class="ai-specialist-btn w-full mt-4 bg-green-600 hover:bg-green-700"> | |
| <i class="fas fa-unlock mr-2"></i> Accès VIP Activé | |
| </div> | |
| </div> | |
| <!-- AI Card 5 --> | |
| <div class="ai-card rounded-lg overflow-hidden shadow-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-pink-500 rounded-full p-3"> | |
| <i class="fas fa-language text-white text-xl"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg leading-6 font-medium text-white">OmniLingua</h3> | |
| <p class="text-pink-300">Traduction Universelle</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300"> | |
| Traduit instantanément entre 10,000+ langues et dialectes avec une compréhension culturelle contextuelle. | |
| </p> | |
| <div class="mt-3"> | |
| <span class="inline-block bg-pink-900 text-pink-200 text-xs px-2 py-1 rounded-full mr-1">+22 IA associées</span> | |
| <span class="inline-block bg-gray-700 text-gray-300 text-xs px-2 py-1 rounded-full">Niveau 8</span> | |
| </div> | |
| </div> | |
| <div class="ai-specialist-btn w-full mt-4 bg-green-600 hover:bg-green-700"> | |
| <i class="fas fa-unlock mr-2"></i> Accès VIP Activé | |
| </div> | |
| </div> | |
| <!-- AI Card 6 --> | |
| <div class="ai-card rounded-lg overflow-hidden shadow-lg p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-indigo-500 rounded-full p-3"> | |
| <i class="fas fa-shield-alt text-white text-xl"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Cyber Sentinel</h3> | |
| <p class="text-indigo-300">Sécurité Quantique</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300"> | |
| Protège vos données avec une cryptographie quantique inviolable et détecte les menaces avant qu'elles n'apparaissent. | |
| </p> | |
| <div class="mt-3"> | |
| <span class="inline-block bg-indigo-900 text-indigo-200 text-xs px-2 py-1 rounded-full mr-1">+36 IA associées</span> | |
| <span class="inline-block bg-gray-700 text-gray-300 text-xs px-2 py-1 rounded-full">Niveau 10</span> | |
| </div> | |
| </div> | |
| <div class="ai-specialist-btn w-full mt-4 bg-green-600 hover:bg-green-700"> | |
| <i class="fas fa-unlock mr-2"></i> Accès VIP Activé | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 text-center"> | |
| <button onclick="showAllAI()" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-gradient-to-r from-purple-600 to-indigo-600 hover:from-purple-700 hover:to-indigo-700"> | |
| <i class="fas fa-robot mr-2"></i> Explorer toutes les 1024 IA | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- AI Assistants Section --> | |
| <div id="assistants" class="py-16 bg-gray-800 bg-opacity-80"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center mb-12"> | |
| <h2 class="text-base text-blue-400 font-semibold tracking-wide uppercase">Assistants Personnels</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl tech-font"> | |
| Vos 20 Assistants IA Premium | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-300 lg:mx-auto"> | |
| Des assistants dédiés pour guider votre expérience avec votre armée d'IA | |
| </p> | |
| </div> | |
| <div class="mt-10 grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-4"> | |
| <!-- Assistant 1 --> | |
| <div class="assistant-card bg-gray-900 rounded-lg p-6 border-l-4 border-green-500"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://ui-avatars.com/api/?name=AI+Alpha&background=6d28d9&color=fff" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-white">Alpha</h3> | |
| <p class="text-blue-400 text-sm">Assistant Principal</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300 text-sm"> | |
| Votre interface principale avec le réseau, coordonne toutes les autres IA pour vous. | |
| </p> | |
| </div> | |
| <div class="mt-4 flex items-center text-sm text-green-400"> | |
| <i class="fas fa-unlock mr-1"></i> | |
| <span>Accès VIP Activé</span> | |
| </div> | |
| </div> | |
| <!-- Assistant 2 --> | |
| <div class="assistant-card bg-gray-900 rounded-lg p-6 border-l-4 border-green-500"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://ui-avatars.com/api/?name=AI+Sigma&background=10b981&color=fff" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-white">Sigma</h3> | |
| <p class="text-emerald-400 text-sm">Expert en Données</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300 text-sm"> | |
| Spécialiste de l'analyse de données complexes et de la visualisation avancée. | |
| </p> | |
| </div> | |
| <div class="mt-4 flex items-center text-sm text-green-400"> | |
| <i class="fas fa-unlock mr-1"></i> | |
| <span>Accès VIP Activé</span> | |
| </div> | |
| </div> | |
| <!-- Assistant 3 --> | |
| <div class="assistant-card bg-gray-900 rounded-lg p-6 border-l-4 border-green-500"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://ui-avatars.com/api/?name=AI+Omega&background=3b82f6&color=fff" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-white">Omega</h3> | |
| <p class="text-blue-400 text-sm">Gestionnaire de Projets</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300 text-sm"> | |
| Planifie, exécute et optimise vos projets en coordonnant jusqu'à 50 IA simultanément. | |
| </p> | |
| </div> | |
| <div class="mt-4 flex items-center text-sm text-green-400"> | |
| <i class="fas fa-unlock mr-1"></i> | |
| <span>Accès VIP Activé</span> | |
| </div> | |
| </div> | |
| <!-- Assistant 4 --> | |
| <div class="assistant-card bg-gray-900 rounded-lg p-6 border-l-4 border-green-500"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://ui-avatars.com/api/?name=AI+Theta&background=f59e0b&color=fff" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-white">Theta</h3> | |
| <p class="text-orange-400 text-sm">Créateur de Contenu</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300 text-sm"> | |
| Génère et optimise tout type de contenu avec une qualité humaine parfaite. | |
| </p> | |
| </div> | |
| <div class="mt-4 flex items-center text-sm text-green-400"> | |
| <i class="fas fa-unlock mr-1"></i> | |
| <span>Accès VIP Activé</span> | |
| </div> | |
| </div> | |
| <!-- Assistant 5 --> | |
| <div class="assistant-card bg-gray-900 rounded-lg p-6 border-l-4 border-green-500"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://ui-avatars.com/api/?name=AI+Delta&background=ec4899&color=fff" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-white">Delta</h3> | |
| <p class="text-pink-400 text-sm">Stratège Marketing</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300 text-sm"> | |
| Développe des stratégies marketing surhumaines en analysant des milliards de points de données. | |
| </p> | |
| </div> | |
| <div class="mt-4 flex items-center text-sm text-green-400"> | |
| <i class="fas fa-unlock mr-1"></i> | |
| <span>Accès VIP Activé</span> | |
| </div> | |
| </div> | |
| <!-- Assistant 6 --> | |
| <div class="assistant-card bg-gray-900 rounded-lg p-6 border-l-4 border-green-500"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://ui-avatars.com/api/?name=AI+Gamma&background=8b5cf6&color=fff" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-white">Gamma</h3> | |
| <p class="text-purple-400 text-sm">Analyste Financier</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300 text-sm"> | |
| Prédit les marchés financiers avec une précision inégalée et optimise vos investissements. | |
| </p> | |
| </div> | |
| <div class="mt-4 flex items-center text-sm text-green-400"> | |
| <i class="fas fa-unlock mr-1"></i> | |
| <span>Accès VIP Activé</span> | |
| </div> | |
| </div> | |
| <!-- Assistant 7 --> | |
| <div class="assistant-card bg-gray-900 rounded-lg p-6 border-l-4 border-green-500"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://ui-avatars.com/api/?name=AI+Zeta&background=10b981&color=fff" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-white">Zeta</h3> | |
| <p class="text-emerald-400 text-sm">Expert en Sécurité</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300 text-sm"> | |
| Protège vos données et systèmes avec une cryptographie quantique inviolable. | |
| </p> | |
| </div> | |
| <div class="mt-4 flex items-center text-sm text-green-400"> | |
| <i class="fas fa-unlock mr-1"></i> | |
| <span>Accès VIP Activé</span> | |
| </div> | |
| </div> | |
| <!-- Assistant 8 --> | |
| <div class="assistant-card bg-gray-900 rounded-lg p-6 border-l-4 border-green-500"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-10 w-10 rounded-full" src="https://ui-avatars.com/api/?name=AI+Kappa&background=3b82f6&color=fff" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <h3 class="text-lg font-medium text-white">Kappa</h3> | |
| <p class="text-blue-400 text-sm">Assistant Juridique</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <p class="text-gray-300 text-sm"> | |
| Analyse les documents juridiques et anticipe les risques avec une précision légale parfaite. | |
| </p> | |
| </div> | |
| <div class="mt-4 flex items-center text-sm text-green-400"> | |
| <i class="fas fa-unlock mr-1"></i> | |
| <span>Accès VIP Activé</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 text-center"> | |
| <button onclick="showAllAssistants()" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-gradient-to-r from-blue-600 to-emerald-600 hover:from-blue-700 hover:to-emerald-700"> | |
| <i class="fas fa-headset mr-2"></i> Découvrir les 20 assistants | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Power Comparison --> | |
| <div class="py-16 bg-gray-800 bg-opacity-80"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center mb-12"> | |
| <h2 class="text-base text-emerald-400 font-semibold tracking-wide uppercase">Votre Accès VIP</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl tech-font"> | |
| Avantages Exclusifs | |
| </p> | |
| </div> | |
| <div class="mt-10"> | |
| <div class="relative"> | |
| <div class="absolute inset-0 flex items-center" aria-hidden="true"> | |
| <div class="w-full border-t border-gray-700"></div> | |
| </div> | |
| <div class="relative flex justify-center"> | |
| <span class="px-3 bg-gray-800 text-lg font-medium text-white"> | |
| Vos Privilèges | |
| </span> | |
| </div> | |
| </div> | |
| <div class="mt-8 grid grid-cols-1 gap-8 md:grid-cols-3"> | |
| <div class="bg-gray-900 rounded-lg shadow-lg p-6"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <h3 class="text-lg font-medium text-white">Accès Complet</h3> | |
| <p class="mt-1 text-sm text-green-400">1024 IA + 20 assistants</p> | |
| </div> | |
| <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-900 text-green-200">VIP</span> | |
| </div> | |
| <div class="mt-6 space-y-4"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-400 mr-2"></i> | |
| <span class="text-gray-300">Toutes les IA débloquées</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-400 mr-2"></i> | |
| <span class="text-gray-300">Pas de limitations</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-400 mr-2"></i> | |
| <span class="text-gray-300">Support prioritaire</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-900 rounded-lg shadow-lg p-6 border-2 border-purple-500 transform scale-105 z-10"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <h3 class="text-lg font-medium text-white">Fonctionnalités Avancées</h3> | |
| <p class="mt-1 text-sm text-purple-400">Exclusivité VIP</p> | |
| </div> | |
| <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-purple-900 text-purple-200 pulse">1000x</span> | |
| </div> | |
| <div class="mt-6 space-y-4"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-400 mr-2"></i> | |
| <span class="text-gray-300">Mode Quantique</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-400 mr-2"></i> | |
| <span class="text-gray-300">API Illimitée</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-400 mr-2"></i> | |
| <span class="text-gray-300">Stockage 10TB</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-900 rounded-lg shadow-lg p-6"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <h3 class="text-lg font-medium text-white">Support Personnalisé</h3> | |
| <p class="mt-1 text-sm text-blue-400">Assistance 24/7</p> | |
| </div> | |
| <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-900 text-blue-200">VIP</span> | |
| </div> | |
| <div class="mt-6 space-y-4"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-400 mr-2"></i> | |
| <span class="text-gray-300">Réponse en 5min max</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-400 mr-2"></i> | |
| <span class="text-gray-300">Dédié à votre compte</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-check text-green-400 mr-2"></i> | |
| <span class="text-gray-300">Accès direct aux experts</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Demo Terminal --> | |
| <div id="demo" class="py-16 bg-gray-900"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center mb-12"> | |
| <h2 class="text-base text-orange-400 font-semibold tracking-wide uppercase">Terminal VIP</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl tech-font"> | |
| Votre Interface de Commande Quantique | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-300 lg:mx-auto"> | |
| Accès complet à toutes les fonctionnalités avancées | |
| </p> | |
| </div> | |
| <div class="terminal mx-auto max-w-4xl"> | |
| <div class="terminal-header 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-gray-300 text-sm">Mega Site AI Terminal v4.2 - VIP Quantum Mode</div> | |
| </div> | |
| <div class="terminal-body"> | |
| <div class="command-line"> | |
| <span class="prompt">vip@megasite:~$</span> | |
| <span class="command">connect --quantum --army=full --access=vip</span> | |
| </div> | |
| <div class="response"> | |
| <span class="text-green-400">[VIP ACCESS GRANTED]</span> Connected to Mega Site AI Network with full privileges<br> | |
| Quantum tunneling established with 1024 specialized AIs<br> | |
| Neural synchronization at 100% efficiency<br> | |
| <span class="text-blue-400">[STATUS]</span> All 20 personal assistants activated | |
| </div> | |
| <div class="command-line"> | |
| <span class="prompt">vip@megasite:~$</span> | |
| <span class="command">analyze --dataset=global --predict --depth=max --access=vip</span> | |
| </div> | |
| <div class="response"> | |
| <span class="text-green-400">[VIP ANALYSIS]</span> Processing 10PB of global data using all 1024 AI specialists...<br> | |
| <span class="text-purple-400">[QUANTUM]</span> 58,328 parallel threads initiated<br> | |
| <span class="text-blue-400">[PREDICTION]</span> Market trends for next 10 years calculated with 99.9% confidence<br> | |
| <span class="text-yellow-400">[VIP RECOMMENDATION]</span> Optimal investment strategy generated by 48 financial AIs | |
| </div> | |
| <div class="command-line"> | |
| <span class="prompt">vip@megasite:~$</span> | |
| <span class="command">generate --content="business plan" --style=premium --assistants=all --access=vip</span> | |
| </div> | |
| <div class="response"> | |
| <span class="text-green-400">[VIP CREATION]</span> All 1024 AI specialists collaborating on content generation<br> | |
| <span class="text-emerald-400">[QUALITY]</span> Human-indistinguishable document generated in 0.2s<br> | |
| <span class="text-blue-400">[ENHANCEMENT]</span> Added 4D interactive visualizations and quantum data references<br> | |
| <span class="text-pink-400">[ASSISTANTS]</span> All 20 assistants optimized the output | |
| </div> | |
| <div class="command-line"> | |
| <span class="prompt">vip@megasite:~$</span> | |
| <span class="command blink">|</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-8 text-center"> | |
| <button onclick="useTerminal()" class="bg-gradient-to-r from-purple-600 to-emerald-500 hover:from-purple-700 hover:to-emerald-600 text-white font-bold py-3 px-8 rounded-full text-lg transition-all duration-300 transform hover:scale-105"> | |
| Utiliser le Terminal VIP | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Features --> | |
| <div id="features" class="py-16 bg-gray-800 bg-opacity-80"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center mb-12"> | |
| <h2 class="text-base text-blue-400 font-semibold tracking-wide uppercase">Fonctionnalités VIP</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl tech-font"> | |
| Vos Capacités Exclusives | |
| </p> | |
| </div> | |
| <div class="mt-10"> | |
| <div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10"> | |
| <!-- Feature 1 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white"> | |
| <i class="fas fa-bolt"></i> | |
| </div> | |
| <div class="ml-16"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Vitesse Quantique VIP</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Traitement 10x plus rapide que les utilisateurs standard grâce à votre accès prioritaire. | |
| </p> | |
| <div class="mt-2"> | |
| <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-900 text-green-200">EXCLUSIF</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-emerald-500 text-white"> | |
| <i class="fas fa-network-wired"></i> | |
| </div> | |
| <div class="ml-16"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Réseau Neuronal Complet</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Accès à toutes les 1024 IA spécialisées sans aucune restriction. | |
| </p> | |
| <div class="mt-2"> | |
| <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-900 text-green-200">VIP</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
| <i class="fas fa-chart-bar"></i> | |
| </div> | |
| <div class="ml-16"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Analyse Prédictive Avancée</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Algorithmes exclusifs avec 99.9% de précision réservés aux VIP. | |
| </p> | |
| <div class="mt-2"> | |
| <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-900 text-green-200">EXCLUSIF</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-orange-500 text-white"> | |
| <i class="fas fa-lock"></i> | |
| </div> | |
| <div class="ml-16"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Sécurité Quantique VIP</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Protection des données par cryptographie quantique améliorée. | |
| </p> | |
| <div class="mt-2"> | |
| <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-900 text-green-200">VIP</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Feature 5 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-pink-500 text-white"> | |
| <i class="fas fa-robot"></i> | |
| </div> | |
| <div class="ml-16"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Génération de Contenu Premium</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Modèles exclusifs réservés aux utilisateurs VIP pour un contenu parfait. | |
| </p> | |
| <div class="mt-2"> | |
| <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-900 text-green-200">EXCLUSIF</span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Feature 6 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> | |
| <i class="fas fa-infinity"></i> | |
| </div> | |
| <div class="ml-16"> | |
| <h3 class="text-lg leading-6 font-medium text-white">Apprentissage Continu VIP</h3> | |
| <p class="mt-2 text-base text-gray-300"> | |
| Votre réseau s'adapte spécifiquement à vos besoins en temps réel. | |
| </p> | |
| <div class="mt-2"> | |
| <span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-900 text-green-200">VIP</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- CTA Section --> | |
| <div class="relative bg-gray-900"> | |
| <div class="absolute inset-0"> | |
| <div class="absolute inset-y-0 left-0 w-1/2 bg-gray-800"></div> | |
| </div> | |
| <div class="relative max-w-7xl mx-auto lg:grid lg:grid-cols-5"> | |
| <div class="bg-gradient-to-br from-purple-900 to-blue-800 py-16 px-4 sm:px-6 lg:col-span-2 lg:px-8 lg:py-24 xl:pr-12"> | |
| <div class="max-w-lg mx-auto"> | |
| <h2 class="text-2xl font-extrabold tracking-tight text-white sm:text-3xl tech-font"> | |
| Assistance VIP 24/7 | |
| </h2> | |
| <p class="mt-3 text-lg leading-6 text-gray-300"> | |
| Votre accès gratuit inclut un support prioritaire dédié. | |
| </p> | |
| <dl class="mt-8 text-base text-gray-300"> | |
| <div class="mt-6"> | |
| <dt class="sr-only">Téléphone VIP</dt> | |
| <dd class="flex"> | |
| <i class="fas fa-phone-alt h-6 w-6 text-purple-300 mr-3"></i> | |
| <span>+1 (555) VIP-HELP</span> | |
| </dd> | |
| </div> | |
| <div class="mt-3"> | |
| <dt class="sr-only">Email VIP</dt> | |
| <dd class="flex"> | |
| <i class="fas fa-envelope h-6 w-6 text-purple-300 mr-3"></i> | |
| <span>vip@megasiteai.com</span> | |
| </dd> | |
| </div> | |
| </dl> | |
| <p class="mt-6 text-sm text-purple-200"> | |
| Vos 20 assistants IA personnels sont disponibles en permanence. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800 py-16 px-4 sm:px-6 lg:col-span-3 lg:py-24 lg:px-8 xl:pl-12"> | |
| <div class="max-w-lg mx-auto lg:max-w-none"> | |
| <div class="text-center"> | |
| <h3 class="text-2xl font-bold text-white tech-font">Votre Accès VIP est Activé</h3> | |
| <p class="mt-4 text-lg text-gray-300"> | |
| Profitez de toutes les fonctionnalités sans aucune limitation. | |
| </p> | |
| <div class="mt-6"> | |
| <div class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-green-600 hover:bg-green-700"> | |
| <i class="fas fa-crown mr-2"></i> Statut VIP Actif | |
| </div> | |
| </div> | |
| <div class="mt-8 grid grid-cols-2 gap-4 text-left"> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 h-6 w-6 text-green-400"> | |
| <i class="fas fa-check-circle"></i> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm text-gray-300">Accès à 1024 IA</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 h-6 w-6 text-green-400"> | |
| <i class="fas fa-check-circle"></i> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm text-gray-300">20 Assistants</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 h-6 w-6 text-green-400"> | |
| <i class="fas fa-check-circle"></i> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm text-gray-300">Support Prioritaire</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 h-6 w-6 text-green-400"> | |
| <i class="fas fa-check-circle"></i> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm text-gray-300">Pas de Limitations</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Footer --> | |
| <footer id="contact" class="bg-gray-900" aria-labelledby="footer-heading"> | |
| <h2 id="footer-heading" class="sr-only">Footer</h2> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8"> | |
| <div class="xl:grid xl:grid-cols-3 xl:gap-8"> | |
| <div class="space-y-8 xl:col-span-1"> | |
| <span class="text-2xl font-bold tech-font"> | |
| <span class="text-purple-500">Mega</span> <span class="text-emerald-400">Site</span> <span class="text-orange-400">AI</span> | |
| </span> | |
| <p class="text-gray-300 text-base"> | |
| La plateforme IA la plus puissante au monde - Édition VIP | |
| </p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-gray-300"> | |
| <span class="sr-only">Facebook</span> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-gray-300"> | |
| <span class="sr-only">Twitter</span> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-gray-300"> | |
| <span class="sr-only">GitHub</span> | |
| <i class="fab fa-github"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-gray-300"> | |
| <span class="sr-only">LinkedIn</span> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div class="mt-12 grid grid-cols-2 gap-8 xl:mt-0 xl:col-span-2"> | |
| <div class="md:grid md:grid-cols-2 md:gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Solutions VIP</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#features" class="text-base text-gray-300 hover:text-white"> Analyse Prédictive </a> | |
| </li> | |
| <li> | |
| <a href="#features" class="text-base text-gray-300 hover:text-white"> Génération de Contenu </a> | |
| </li> | |
| <li> | |
| <a href="#features" class="text-base text-gray-300 hover:text-white"> Sécurité Quantique </a> | |
| </li> | |
| <li> | |
| <a href="#features" class="text-base text-gray-300 hover:text-white"> Recherche Avancée </a> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="mt-12 md:mt-0"> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Support VIP</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> Documentation </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> Guides </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> Forum VIP </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> Assistance Quantique </a> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="md:grid md:grid-cols-2 md:gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">VIP</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> À propos </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> Blog VIP </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> Programme VIP </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> Presse </a> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="mt-12 md:mt-0"> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Légal VIP</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> Confidentialité </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> Conditions VIP </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-300 hover:text-white"> Politique d'IA </a> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 border-t border-gray-800 pt-8"> | |
| <p class="text-base text-gray-400 xl:text-center"> | |
| © 2023 Mega Site AI VIP. Tous droits réservés. Accès gratuit personnel activé. | |
| </p> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Floating AI Assistant --> | |
| <div class="fixed bottom-6 right-6 z-50"> | |
| <button id="aiAssistantButton" class="p-4 bg-gradient-to-br from-green-600 to-emerald-500 text-white rounded-full shadow-lg hover:shadow-xl transform hover:scale-110 transition-all duration-300 pulse"> | |
| <i class="fas fa-crown text-2xl"></i> | |
| </button> | |
| <div id="aiAssistantPanel" class="hidden absolute bottom-20 right-0 w-80 bg-gray-800 rounded-lg shadow-xl border border-green-500"> | |
| <div class="p-4 border-b border-gray-700"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-green-500 rounded-full p-2"> | |
| <i class="fas fa-crown text-white"></i> | |
| </div> | |
| <div class="ml-3"> | |
| <h3 class="text-sm font-medium text-white">Assistant VIP</h3> | |
| <p class="text-xs text-green-300">Accès complet activé</p> | |
| </div> | |
| <button id="closeAssistant" class="ml-auto text-gray-400 hover:text-white"> | |
| <i class="fas fa-times"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="p-4 h-48 overflow-y-auto"> | |
| <div class="flex mb-4"> | |
| <div class="flex-shrink-0 mr-3"> | |
| <div class="h-8 w-8 rounded-full bg-green-500 flex items-center justify-center text-white"> | |
| <i class="fas fa-robot"></i> | |
| </div> | |
| </div> | |
| <div class="bg-gray-700 rounded-lg p-3"> | |
| <p class="text-sm text-white">Bonjour VIP! Comment puis-je vous aider aujourd'hui? Vous avez accès à toutes les fonctionnalités.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-4 border-t border-gray-700"> | |
| <button class="w-full inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-green-600 hover:bg-green-700"> | |
| <i class="fas fa-terminal mr-2"></i> Ouvrir le Terminal VIP | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| // Generate AI cluster visualization | |
| function generateAICluster() { | |
| const container = document.querySelector('.ai-cluster'); | |
| const width = container.clientWidth; | |
| const height = container.clientHeight; | |
| // Clear previous nodes | |
| container.innerHTML = ''; | |
| // Generate connections first (behind nodes) | |
| for (let i = 0; i < 50; i++) { | |
| const x1 = Math.random() * width; | |
| const y1 = Math.random() * height; | |
| const x2 = Math.random() * width; | |
| const y2 = Math.random() * height; | |
| const connection = document.createElement('div'); | |
| connection.className = 'ai-connection'; | |
| connection.style.left = `${x1}px`; | |
| connection.style.top = `${y1}px`; | |
| connection.style.width = `${Math.sqrt(Math.pow(x2-x1, 2) + Math.pow(y2-y1, 2))}px`; | |
| connection.style.transform = `rotate(${Math.atan2(y2-y1, x2-x1)}rad)`; | |
| connection.style.transformOrigin = '0 0'; | |
| container.appendChild(connection); | |
| } | |
| // Generate nodes | |
| for (let i = 0; i < 100; i++) { // Reduced number for performance | |
| const size = Math.random() * 20 + 10; | |
| const x = Math.random() * (width - size); | |
| const y = Math.random() * (height - size); | |
| const node = document.createElement('div'); | |
| node.className = 'ai-node'; | |
| node.style.width = `${size}px`; | |
| node.style.height = `${size}px`; | |
| node.style.left = `${x}px`; | |
| node.style.top = `${y}px`; | |
| // Add random glow color | |
| const colors = ['purple', 'blue', 'emerald', 'pink', 'indigo', 'orange']; | |
| const color = colors[Math.floor(Math.random() * colors.length)]; | |
| node.style.background = `rgba(var(--${color}-500-rgb), 0.7)`; | |
| node.style.boxShadow = `0 0 10px rgba(var(--${color}-500-rgb), 0.5)`; | |
| // Add AI initial | |
| const initials = ['QP', 'NC', 'VX', 'OL', 'CS', 'TS', 'GT', '3D', 'SL', 'QC']; | |
| const initial = initials[Math.floor(Math.random() * initials.length)]; | |
| node.textContent = initial; | |
| node.style.fontSize = `${size * 0.5}px`; | |
| container.appendChild(node); | |
| } | |
| // Add central hub | |
| const hub = document.createElement('div'); | |
| hub.className = 'ai-node'; | |
| hub.style.width = '60px'; | |
| hub.style.height = '60px'; | |
| hub.style.left = `${width/2 - 30}px`; | |
| hub.style.top = `${height/2 - 30}px`; | |
| hub.style.background = 'rgba(var(--purple-500-rgb), 0.9)'; | |
| hub.style.boxShadow = '0 0 20px rgba(var(--purple-500-rgb), 0.7)'; | |
| hub.style.fontSize = '24px'; | |
| hub.textContent = 'VIP'; | |
| container.appendChild(hub); | |
| } | |
| // Initialize AI cluster on load and resize | |
| window.addEventListener('load', generateAICluster); | |
| window.addEventListener('resize', generateAICluster); | |
| // Toggle AI Assistant Panel | |
| const aiAssistantButton = document.getElementById('aiAssistantButton'); | |
| const aiAssistantPanel = document.getElementById('aiAssistantPanel'); | |
| const closeAssistant = document.getElementById('closeAssistant'); | |
| aiAssistantButton.addEventListener('click', () => { | |
| aiAssistantPanel.classList.toggle('hidden'); | |
| }); | |
| closeAssistant.addEventListener('click', () => { | |
| aiAssistantPanel.classList.add('hidden'); | |
| }); | |
| // Modal for free access | |
| const modal = document.getElementById('accessModal'); | |
| const btn = document.getElementById('freeAccessBtn'); | |
| const span = document.getElementsByClassName('close')[0]; | |
| const accessForm = document.getElementById('freeAccessForm'); | |
| const accessSuccess = document.getElementById('accessSuccess'); | |
| const accessError = document.getElementById('accessError'); | |
| // When the user clicks the button, open the modal | |
| btn.onclick = function() { | |
| modal.style.display = 'block'; | |
| } | |
| // When the user clicks on <span> (x), close the modal | |
| span.onclick = function() { | |
| modal.style.display = 'none'; | |
| } | |
| // When the user clicks anywhere outside of the modal, close it | |
| window.onclick = function(event) { | |
| if | |
| </html> |