Spaces:
Running
Running
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>MEGA MARCHÉ IA - La plus grande plateforme d'IA au monde</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"> | |
<script src="https://js.stripe.com/v3/"></script> | |
<style> | |
@keyframes float { | |
0%, 100% { transform: translateY(0); } | |
50% { transform: translateY(-10px); } | |
} | |
.floating { animation: float 6s ease-in-out infinite; } | |
.glass-effect { | |
background: rgba(255, 255, 255, 0.1); | |
backdrop-filter: blur(10px); | |
border: 1px solid rgba(255, 255, 255, 0.2); | |
} | |
.ai-button { | |
transition: all 0.3s ease; | |
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | |
} | |
.ai-button:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); | |
} | |
.pulse { | |
animation: pulse 0.5s ease-in-out; | |
} | |
@keyframes pulse { | |
0% { transform: scale(1); } | |
50% { transform: scale(1.1); } | |
100% { transform: scale(1); } | |
} | |
</style> | |
</head> | |
<body class="min-h-screen bg-gray-900 text-white"> | |
<!-- Background Animation --> | |
<div class="fixed inset-0 overflow-hidden z-0"> | |
<div class="absolute top-0 left-0 w-full h-full bg-gradient-to-br from-purple-900 to-blue-900 opacity-50"></div> | |
<div class="absolute top-0 left-0 w-full h-full"> | |
<div class="absolute top-10 left-20 w-32 h-32 rounded-full bg-purple-600 opacity-20 floating" style="animation-delay: 0s;"></div> | |
<div class="absolute top-1/3 right-20 w-40 h-40 rounded-full bg-blue-600 opacity-20 floating" style="animation-delay: 1s;"></div> | |
<div class="absolute bottom-20 left-1/4 w-24 h-24 rounded-full bg-indigo-600 opacity-20 floating" style="animation-delay: 2s;"></div> | |
</div> | |
</div> | |
<!-- Header --> | |
<header class="relative z-10 glass-effect shadow-lg"> | |
<div class="container mx-auto px-4 py-4 flex justify-between items-center"> | |
<div class="flex items-center space-x-2"> | |
<i class="fas fa-robot text-3xl text-purple-400"></i> | |
<h1 class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-blue-400"> | |
MEGA MARCHÉ IA | |
</h1> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<button id="cartBtn" class="relative p-2 rounded-full hover:bg-gray-800 transition"> | |
<i class="fas fa-shopping-cart text-xl"></i> | |
<span id="cartCount" class="absolute -top-1 -right-1 bg-red-500 text-white rounded-full w-5 h-5 flex items-center justify-center text-xs">0</span> | |
</button> | |
<button id="loginBtn" class="px-4 py-2 bg-purple-600 hover:bg-purple-700 rounded-lg font-medium transition"> | |
<i class="fas fa-user mr-2"></i>Connexion | |
</button> | |
</div> | |
</div> | |
</header> | |
<!-- Main Content --> | |
<main class="relative z-10 container mx-auto px-4 py-8"> | |
<!-- Hero Section --> | |
<section class="mb-8 text-center"> | |
<h2 class="text-4xl md:text-5xl font-bold mb-4 bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-blue-400"> | |
990099 Assistants IA | |
</h2> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto mb-6"> | |
La plus grande plateforme d'intelligences artificielles au monde pour tous vos besoins professionnels et personnels. | |
</p> | |
<div class="flex justify-center space-x-4"> | |
<button id="subscribeBtn" class="px-6 py-3 bg-gradient-to-r from-purple-600 to-blue-600 hover:from-purple-700 hover:to-blue-700 rounded-lg font-semibold text-lg transition transform hover:scale-105"> | |
<i class="fas fa-crown mr-2"></i>S'abonner dès 29€/mois | |
</button> | |
</div> | |
</section> | |
<!-- Search and Filters --> | |
<div class="mb-8 glass-effect p-4 rounded-lg"> | |
<div class="flex flex-col md:flex-row gap-4"> | |
<input type="text" placeholder="Rechercher une IA..." class="flex-grow px-4 py-2 bg-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"> | |
<select class="px-4 py-2 bg-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500"> | |
<option>Toutes catégories</option> | |
<option>Rédaction</option> | |
<option>Images</option> | |
<option>Code</option> | |
<option>Marketing</option> | |
<option>Analyse</option> | |
</select> | |
<button id="filterBtn" class="px-4 py-2 bg-purple-600 hover:bg-purple-700 rounded-lg"> | |
<i class="fas fa-filter mr-2"></i>Filtrer | |
</button> | |
</div> | |
</div> | |
<!-- AI Buttons Grid --> | |
<section class="mb-12"> | |
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-4"> | |
<!-- Boutons IA activés --> | |
<button class="ai-button bg-gray-800 hover:bg-gray-700 p-4 rounded-lg flex flex-col items-center"> | |
<i class="fas fa-pen-fancy text-3xl text-purple-400 mb-2"></i> | |
<span>Rédaction IA</span> | |
</button> | |
<button class="ai-button bg-gray-800 hover:bg-gray-700 p-4 rounded-lg flex flex-col items-center"> | |
<i class="fas fa-image text-3xl text-blue-400 mb-2"></i> | |
<span>Génération d'images</span> | |
</button> | |
<button class="ai-button bg-gray-800 hover:bg-gray-700 p-4 rounded-lg flex flex-col items-center"> | |
<i class="fas fa-code text-3xl text-green-400 mb-2"></i> | |
<span>Assistant Code</span> | |
</button> | |
<button class="ai-button bg-gray-800 hover:bg-gray-700 p-4 rounded-lg flex flex-col items-center"> | |
<i class="fas fa-chart-line text-3xl text-yellow-400 mb-2"></i> | |
<span>Analyse de données</span> | |
</button> | |
<button class="ai-button bg-gray-800 hover:bg-gray-700 p-4 rounded-lg flex flex-col items-center"> | |
<i class="fas fa-bullhorn text-3xl text-red-400 mb-2"></i> | |
<span>Marketing IA</span> | |
</button> | |
</div> | |
</section> | |
<!-- Pagination --> | |
<div class="flex justify-center mb-12"> | |
<nav class="inline-flex rounded-md shadow"> | |
<a href="#" class="px-4 py-2 bg-gray-800 rounded-l-lg hover:bg-gray-700"><i class="fas fa-chevron-left"></i></a> | |
<a href="#" class="px-4 py-2 bg-purple-600 text-white">1</a> | |
<a href="#" class="px-4 py-2 bg-gray-800 hover:bg-gray-700">2</a> | |
<a href="#" class="px-4 py-2 bg-gray-800 hover:bg-gray-700">3</a> | |
<a href="#" class="px-4 py-2 bg-gray-800 hover:bg-gray-700">...</a> | |
<a href="#" class="px-4 py-2 bg-gray-800 hover:bg-gray-700">99</a> | |
<a href="#" class="px-4 py-2 bg-gray-800 rounded-r-lg hover:bg-gray-700"><i class="fas fa-chevron-right"></i></a> | |
</nav> | |
</div> | |
</main> | |
<!-- Footer --> | |
<footer class="relative z-10 bg-gray-800 mt-16 glass-effect"> | |
<div class="container mx-auto px-4 py-8"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
<div> | |
<h4 class="text-lg font-semibold mb-4">MEGA MARCHÉ IA</h4> | |
<p class="text-gray-400">La plateforme ultime pour toutes vos solutions d'intelligence artificielle avec 990099 assistants spécialisés.</p> | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold mb-4">Navigation</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Accueil</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Catégories</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Abonnements</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold mb-4">Support</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Politique de confidentialité</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">CGU</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Mentions légales</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold mb-4">Paiements Sécurisés</h4> | |
<div class="flex space-x-2 mb-4"> | |
<div class="p-2 bg-gray-700 rounded"> | |
<i class="fab fa-cc-paypal text-2xl text-blue-400"></i> | |
</div> | |
<div class="p-2 bg-gray-700 rounded"> | |
<i class="fab fa-cc-stripe text-2xl text-purple-400"></i> | |
</div> | |
<div class="p-2 bg-gray-700 rounded"> | |
<i class="fab fa-cc-visa text-2xl text-blue-600"></i> | |
</div> | |
<div class="p-2 bg-gray-700 rounded"> | |
<i class="fab fa-cc-mastercard text-2xl text-red-600"></i> | |
</div> | |
</div> | |
<p class="text-gray-400 text-sm">Paiements 100% sécurisés et cryptés.</p> | |
</div> | |
</div> | |
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400"> | |
<p>© 2023 MEGA MARCHÉ IA. Tous droits réservés.</p> | |
</div> | |
</div> | |
</footer> | |
<!-- Modals --> | |
<!-- Login Modal --> | |
<div id="loginModal" class="fixed inset-0 z-50 flex items-center justify-center hidden"> | |
<div class="absolute inset-0 bg-black bg-opacity-70"></div> | |
<div class="relative bg-gray-800 rounded-xl max-w-md w-full mx-4 glass-effect p-8"> | |
<button id="closeLoginModal" class="absolute top-4 right-4 text-gray-400 hover:text-white"> | |
<i class="fas fa-times text-xl"></i> | |
</button> | |
<h3 class="text-2xl font-bold mb-6 text-center">Connexion</h3> | |
<form id="loginForm"> | |
<div class="mb-4"> | |
<label for="loginEmail" class="block text-gray-300 mb-2">Email</label> | |
<input type="email" id="loginEmail" class="w-full px-4 py-2 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500" required> | |
</div> | |
<div class="mb-6"> | |
<label for="loginPassword" class="block text-gray-300 mb-2">Mot de passe</label> | |
<input type="password" id="loginPassword" class="w-full px-4 py-2 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500" required> | |
</div> | |
<button type="submit" class="w-full py-2 bg-purple-600 hover:bg-purple-700 rounded-lg font-medium transition mb-4"> | |
Se connecter | |
</button> | |
<p class="text-center text-gray-400">Pas encore de compte? <button id="showRegisterBtn" class="text-purple-400 hover:text-purple-300">S'inscrire</button></p> | |
</form> | |
</div> | |
</div> | |
<!-- Register Modal --> | |
<div id="registerModal" class="fixed inset-0 z-50 flex items-center justify-center hidden"> | |
<div class="absolute inset-0 bg-black bg-opacity-70"></div> | |
<div class="relative bg-gray-800 rounded-xl max-w-md w-full mx-4 glass-effect p-8"> | |
<button id="closeRegisterModal" class="absolute top-4 right-4 text-gray-400 hover:text-white"> | |
<i class="fas fa-times text-xl"></i> | |
</button> | |
<h3 class="text-2xl font-bold mb-6 text-center">Inscription</h3> | |
<form id="registerForm"> | |
<div class="mb-4"> | |
<label for="registerName" class="block text-gray-300 mb-2">Nom complet</label> | |
<input type="text" id="registerName" class="w-full px-4 py-2 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500" required> | |
</div> | |
<div class="mb-4"> | |
<label for="registerEmail" class="block text-gray-300 mb-2">Email</label> | |
<input type="email" id="registerEmail" class="w-full px-4 py-2 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500" required> | |
</div> | |
<div class="mb-6"> | |
<label for="registerPassword" class="block text-gray-300 mb-2">Mot de passe</label> | |
<input type="password" id="registerPassword" class="w-full px-4 py-2 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500" required> | |
</div> | |
<button type="submit" class="w-full py-2 bg-purple-600 hover:bg-purple-700 rounded-lg font-medium transition mb-4"> | |
S'inscrire | |
</button> | |
<p class="text-center text-gray-400">Déjà un compte? <button id="showLoginBtn" class="text-purple-400 hover:text-purple-300">Se connecter</button></p> | |
</form> | |
</div> | |
</div> | |
<!-- Subscribe Modal --> | |
<div id="subscribeModal" class="fixed inset-0 z-50 flex items-center justify-center hidden"> | |
<div class="absolute inset-0 bg-black bg-opacity-70"></div> | |
<div class="relative bg-gray-800 rounded-xl max-w-2xl w-full mx-4 glass-effect p-8"> | |
<button id="closeSubscribeModal" class="absolute top-4 right-4 text-gray-400 hover:text-white"> | |
<i class="fas fa-times text-xl"></i> | |
</button> | |
<h3 class="text-2xl font-bold mb-6 text-center">Choisissez votre abonnement</h3> | |
<div class="grid md:grid-cols-2 gap-6 mb-8"> | |
<div class="bg-gray-700 rounded-lg p-6 hover:bg-gray-600 transition"> | |
<h4 class="text-xl font-semibold mb-2">Gratuit</h4> | |
<p class="text-3xl font-bold mb-4">0€<span class="text-sm font-normal text-gray-400">/mois</span></p> | |
<ul class="space-y-2 mb-6"> | |
<li class="flex items-center"><i class="fas fa-check text-green-400 mr-2"></i> Accès à 5 IA de base</li> | |
<li class="flex items-center"><i class="fas fa-check text-green-400 mr-2"></i> Support limité</li> | |
<li class="flex items-center"><i class="fas fa-check text-green-400 mr-2"></i> 50 requêtes/mois</li> | |
<li class="flex items-center"><i class="fas fa-times text-red-400 mr-2"></i> Pas d'accès premium</li> | |
</ul> | |
<button id="selectFreeBtn" class="w-full py-2 bg-gray-600 hover:bg-gray-500 rounded-lg font-medium transition"> | |
Sélectionner | |
</button> | |
</div> | |
<div class="bg-gradient-to-br from-purple-600 to-blue-600 rounded-lg p-6 hover:from-purple-700 hover:to-blue-700 transition"> | |
<h4 class="text-xl font-semibold mb-2">Premium</h4> | |
<p class="text-3xl font-bold mb-4">29.99€<span class="text-sm font-normal text-gray-200">/mois</span></p> | |
<ul class="space-y-2 mb-6"> | |
<li class="flex items-center"><i class="fas fa-check text-white mr-2"></i> Accès à toutes les IA</li> | |
<li class="flex items-center"><i class="fas fa-check text-white mr-2"></i> Support prioritaire</li> | |
<li class="flex items-center"><i class="fas fa-check text-white mr-2"></i> Requêtes illimitées</li> | |
<li class="flex items-center"><i class="fas fa-check text-white mr-2"></i> Nouveautés en avant-première</li> | |
</ul> | |
<button id="selectPremiumBtn" class="w-full py-2 bg-white hover:bg-gray-100 text-purple-600 rounded-lg font-medium transition"> | |
Sélectionner | |
</button> | |
</div> | |
</div> | |
<p class="text-center text-gray-400">Vous pouvez annuler votre abonnement à tout moment.</p> | |
</div> | |
</div> | |
<!-- Payment Modal --> | |
<div id="paymentModal" class="fixed inset-0 z-50 flex items-center justify-center hidden"> | |
<div class="absolute inset-0 bg-black bg-opacity-70"></div> | |
<div class="relative bg-gray-800 rounded-xl max-w-md w-full mx-4 glass-effect p-8"> | |
<button id="closePaymentModal" class="absolute top-4 right-4 text-gray-400 hover:text-white"> | |
<i class="fas fa-times text-xl"></i> | |
</button> | |
<h3 class="text-2xl font-bold mb-6 text-center">Paiement Premium</h3> | |
<div class="mb-6"> | |
<label class="block text-gray-300 mb-2">Méthode de paiement</label> | |
<div class="grid grid-cols-2 gap-4 mb-4"> | |
<button id="paypalBtn" class="py-3 bg-gray-700 hover:bg-gray-600 rounded-lg flex items-center justify-center transition"> | |
<i class="fab fa-cc-paypal text-2xl text-blue-400 mr-2"></i> PayPal | |
</button> | |
<button id="stripeBtn" class="py-3 bg-gray-700 hover:bg-gray-600 rounded-lg flex items-center justify-center transition"> | |
<i class="fab fa-cc-stripe text-2xl text-purple-400 mr-2"></i> Stripe | |
</button> | |
</div> | |
</div> | |
<div class="bg-gray-700 rounded-lg p-4 mb-6"> | |
<div class="flex justify-between mb-2"> | |
<span class="text-gray-400">Abonnement Premium</span> | |
<span class="font-semibold">29.99€</span> | |
</div> | |
<div class="flex justify-between"> | |
<span class="text-gray-400">Taxes</span> | |
<span class="font-semibold">5.99€</span> | |
</div> | |
<div class="border-t border-gray-600 my-2"></div> | |
<div class="flex justify-between font-bold text-lg"> | |
<span>Total</span> | |
<span>35.98€</span> | |
</div> | |
</div> | |
<button id="confirmPaymentBtn" class="w-full py-3 bg-purple-600 hover:bg-purple-700 rounded-lg font-medium transition"> | |
Confirmer le paiement | |
</button> | |
</div> | |
</div> | |
<!-- Cart Modal --> | |
<div id="cartModal" class="fixed inset-0 z-50 flex items-center justify-center hidden"> | |
<div class="absolute inset-0 bg-black bg-opacity-70"></div> | |
<div class="relative bg-gray-800 rounded-xl max-w-md w-full mx-4 glass-effect p-6"> | |
<button id="closeCartModal" class="absolute top-4 right-4 text-gray-400 hover:text-white"> | |
<i class="fas fa-times text-xl"></i> | |
</button> | |
<h3 class="text-2xl font-bold mb-6 flex items-center"> | |
<i class="fas fa-shopping-cart mr-2"></i>Votre Panier | |
</h3> | |
<div id="cartItems" class="max-h-96 overflow-y-auto mb-4"> | |
<p class="text-gray-400 text-center py-8">Votre panier est vide</p> | |
</div> | |
<div class="border-t border-gray-700 pt-4"> | |
<div class="flex justify-between mb-2"> | |
<span class="text-gray-400">Sous-total</span> | |
<span id="cartSubtotal" class="font-semibold">0.00€</span> | |
</div> | |
<div class="flex justify-between mb-4"> | |
<span class="text-gray-400">Taxes</span> | |
<span id="cartTaxes" class="font-semibold">0.00€</span> | |
</div> | |
<div class="flex justify-between font-bold text-lg border-t border-gray-700 pt-2 mb-6"> | |
<span>Total</span> | |
<span id="cartTotal" class="text-purple-400">0.00€</span> | |
</div> | |
<div class="grid grid-cols-2 gap-4"> | |
<button id="clearCartBtn" class="py-2 bg-gray-700 hover:bg-gray-600 rounded-lg transition"> | |
Vider le panier | |
</button> | |
<button id="checkoutBtn" class="py-2 bg-purple-600 hover:bg-purple-700 rounded-lg transition"> | |
Paiement | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Success Notification --> | |
<div id="successNotification" class="fixed bottom-4 right-4 bg-green-600 text-white px-6 py-3 rounded-lg shadow-lg flex items-center transform translate-y-10 opacity-0 transition-all duration-300 z-50"> | |
<i class="fas fa-check-circle mr-2"></i> | |
<span id="successMessage">Opération réussie!</span> | |
</div> | |
<script> | |
</script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<script src="https://js.stripe.com/v3/"></script> | |
</head> | |
<body class="min-h-screen bg-gray-900 text-white"> | |
<!-- Contenu principal --> | |
<main class="container mx-auto px-4 py-8"> | |
<section class="mb-8 text-center"> | |
<h2 class="text-4xl font-bold mb-4">990099 Assistants IA</h2> | |
<button id="subscribeBtn" class="px-6 py-3 bg-purple-600 rounded-lg"> | |
S'abonner dès 29€/mois | |
</button> | |
</section> | |
</main> | |
<script> | |
// Tous les boutons activés | |
document.getElementById('subscribeBtn').addEventListener('click', function() { | |
alert('Fonctionnalité d\'abonnement activée!'); | |
}); | |
</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-marketplace" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |