| | <!DOCTYPE html> |
| | <html lang="fr"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>Artisanat Africain Authentique</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=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@400;600;700&display=swap'); |
| | |
| | body { |
| | font-family: 'Montserrat', sans-serif; |
| | background-color: #f8f5f0; |
| | color: #333; |
| | } |
| | |
| | .title-font { |
| | font-family: 'Playfair Display', serif; |
| | } |
| | |
| | .african-pattern { |
| | background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNMzAgMTVjLTguMjg0IDAtMTUgNi43MTYtMTUgMTVzNi43MTYgMTUgMTUgMTUgMTUtNi43MTYgMTUtMTUtNi43MTYtMTUtMTUtMTV6bTAgMjVjLTUuNTIzIDAtMTAtNC40NzctMTAtMTBzNC40NzctMTAgMTAtMTAgMTAgNC40NzcgMTAgMTAtNC40NzcgMTAtMTAgMTB6IiBmaWxsPSIjZTZlNmU2Ii8+PC9zdmc+'); |
| | opacity: 0.05; |
| | } |
| | |
| | .product-image { |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .product-image:hover { |
| | transform: scale(1.02); |
| | } |
| | |
| | .btn-africa { |
| | background: linear-gradient(to right, #d4a017, #e67e22); |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .btn-africa:hover { |
| | transform: translateY(-2px); |
| | box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3); |
| | } |
| | |
| | .testimonial-card { |
| | background-color: rgba(255, 255, 255, 0.8); |
| | backdrop-filter: blur(5px); |
| | } |
| | </style> |
| | </head> |
| | <body class="relative overflow-x-hidden"> |
| | |
| | <div class="african-pattern absolute inset-0 -z-10"></div> |
| | |
| | |
| | <div class="container mx-auto px-4 py-12"> |
| | <div class="flex flex-col lg:flex-row gap-12 items-center"> |
| | |
| | <div class="lg:w-1/2"> |
| | <div class="mb-6 rounded-xl overflow-hidden shadow-lg"> |
| | <img id="mainImage" src="https://images.unsplash.com/photo-1600857544200-b2f666a9a1e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1080&q=80" |
| | alt="Statue africaine artisanale" class="w-full h-auto product-image rounded-xl"> |
| | </div> |
| | <div class="grid grid-cols-4 gap-4"> |
| | <div class="cursor-pointer border-2 border-transparent hover:border-amber-500 rounded-lg overflow-hidden transition-all"> |
| | <img src="https://images.unsplash.com/photo-1600857544200-b2f666a9a1e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=200&q=80" |
| | alt="Vue 1" class="w-full h-24 object-cover product-image" |
| | onclick="document.getElementById('mainImage').src = this.src"> |
| | </div> |
| | <div class="cursor-pointer border-2 border-transparent hover:border-amber-500 rounded-lg overflow-hidden transition-all"> |
| | <img src="https://images.unsplash.com/photo-1600180758890-6b99059b578c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=200&q=80" |
| | alt="Vue 2" class="w-full h-24 object-cover product-image" |
| | onclick="document.getElementById('mainImage').src = this.src"> |
| | </div> |
| | <div class="cursor-pointer border-2 border-transparent hover:border-amber-500 rounded-lg overflow-hidden transition-all"> |
| | <img src="https://images.unsplash.com/photo-1600180758890-6b99059b578c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=200&q=80" |
| | alt="Vue 3" class="w-full h-24 object-cover product-image" |
| | onclick="document.getElementById('mainImage').src = this.src"> |
| | </div> |
| | <div class="cursor-pointer border-2 border-transparent hover:border-amber-500 rounded-lg overflow-hidden transition-all"> |
| | <img src="https://images.unsplash.com/photo-1600180758890-6b99059b578c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=200&q=80" |
| | alt="Vue 4" class="w-full h-24 object-cover product-image" |
| | onclick="document.getElementById('mainImage').src = this.src"> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | |
| | <div class="lg:w-1/2"> |
| | <h1 class="title-font text-4xl md:text-5xl font-bold mb-4 text-amber-900">Statue Ashanti "Fécondité"</h1> |
| | <div class="flex items-center mb-6"> |
| | <div class="flex text-amber-400"> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star-half-alt"></i> |
| | </div> |
| | <span class="text-gray-600 ml-2">(48 avis)</span> |
| | </div> |
| | |
| | <p class="text-2xl font-semibold text-amber-700 mb-6">85 000 FCFA</p> |
| | |
| | <div class="mb-8"> |
| | <p class="text-gray-700 mb-4">Cette statue Ashanti en bois d'ébène, sculptée à la main au Ghana, représente la déesse de la fécondité. Chaque pièce est unique et porte en elle l'énergie et la tradition du peuple Akan.</p> |
| | |
| | <div class="flex items-center gap-4 mb-4"> |
| | <div class="flex items-center"> |
| | <i class="fas fa-ruler-combined text-amber-600 mr-2"></i> |
| | <span>Hauteur: 35cm</span> |
| | </div> |
| | <div class="flex items-center"> |
| | <i class="fas fa-weight text-amber-600 mr-2"></i> |
| | <span>Poids: 1.2kg</span> |
| | </div> |
| | </div> |
| | |
| | <div class="flex items-center mb-6"> |
| | <i class="fas fa-map-marker-alt text-amber-600 mr-2"></i> |
| | <span>Fabriqué à Kumasi, Ghana</span> |
| | </div> |
| | </div> |
| | |
| | <div class="mb-8"> |
| | <div class="flex items-center mb-4"> |
| | <span class="mr-4 font-medium">Quantité:</span> |
| | <div class="flex border rounded-full overflow-hidden"> |
| | <button class="px-4 py-2 bg-gray-100 hover:bg-gray-200" onclick="updateQuantity(-1)">-</button> |
| | <span id="quantity" class="px-4 py-2 w-12 text-center">1</span> |
| | <button class="px-4 py-2 bg-gray-100 hover:bg-gray-200" onclick="updateQuantity(1)">+</button> |
| | </div> |
| | </div> |
| | |
| | <button class="btn-africa w-full py-4 px-6 rounded-full text-white font-bold text-lg mb-4 flex items-center justify-center gap-2"> |
| | <i class="fas fa-shopping-cart"></i> AJOUTER AU PANIER |
| | </button> |
| | |
| | <button class="w-full py-4 px-6 rounded-full border-2 border-amber-500 text-amber-600 font-bold text-lg hover:bg-amber-50 transition-all"> |
| | <i class="fas fa-heart mr-2"></i> AJOUTER À MA LISTE DE SOUHAITS |
| | </button> |
| | </div> |
| | |
| | <div class="border-t pt-6"> |
| | <h3 class="font-bold mb-3">Livraison et retours</h3> |
| | <div class="flex flex-wrap gap-4"> |
| | <div class="flex items-center"> |
| | <i class="fas fa-truck text-amber-600 mr-2"></i> |
| | <span>Livraison en 3-5 jours</span> |
| | </div> |
| | <div class="flex items-center"> |
| | <i class="fas fa-undo text-amber-600 mr-2"></i> |
| | <span>Retours sous 14 jours</span> |
| | </div> |
| | <div class="flex items-center"> |
| | <i class="fas fa-shield-alt text-amber-600 mr-2"></i> |
| | <span>Paiement sécurisé</span> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | |
| | <div class="bg-white py-12"> |
| | <div class="container mx-auto px-4"> |
| | <div class="max-w-4xl mx-auto"> |
| | <div class="flex border-b mb-8"> |
| | <button class="tab-btn py-3 px-6 font-medium border-b-2 border-amber-500 text-amber-600" onclick="openTab('description')">Description</button> |
| | <button class="tab-btn py-3 px-6 font-medium text-gray-500 hover:text-amber-600" onclick="openTab('details')">Détails</button> |
| | <button class="tab-btn py-3 px-6 font-medium text-gray-500 hover:text-amber-600" onclick="openTab('shipping')">Livraison</button> |
| | </div> |
| | |
| | <div id="description" class="tab-content"> |
| | <h3 class="title-font text-2xl font-bold mb-4 text-amber-900">L'Art Ashanti</h3> |
| | <p class="mb-4">La statue "Fécondité" est une pièce emblématique de l'art Ashanti, peuple du Ghana réputé pour son travail du bois et ses symboles riches de sens. Cette œuvre représente la déesse Asase Ya, associée à la fertilité, à la terre nourricière et à la prospérité.</p> |
| | <p class="mb-4">Sculptée dans du bois d'ébène massif par l'artisan Kwame Osei, cette pièce unique a nécessité plus de 120 heures de travail minutieux. Les motifs géométriques qui ornent la statue sont caractéristiques de l'art Akan et racontent une histoire ancestrale.</p> |
| | <div class="grid md:grid-cols-2 gap-6 mt-8"> |
| | <div> |
| | <h4 class="font-bold mb-2">Symbolisme</h4> |
| | <ul class="list-disc pl-5 space-y-2"> |
| | <li>La position des mains représente l'accueil et la protection</li> |
| | <li>Les cercles concentriques symbolisent l'éternité</li> |
| | <li>Les motifs en zigzag évoquent le parcours de la vie</li> |
| | </ul> |
| | </div> |
| | <div> |
| | <h4 class="font-bold mb-2">Utilisation traditionnelle</h4> |
| | <ul class="list-disc pl-5 space-y-2"> |
| | <li>Rituels de fertilité</li> |
| | <li>Cérémonies de bénédiction</li> |
| | <li>Protection du foyer</li> |
| | <li>Élément central des autels familiaux</li> |
| | </ul> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | <div id="details" class="tab-content hidden"> |
| | <h3 class="title-font text-2xl font-bold mb-4 text-amber-900">Caractéristiques techniques</h3> |
| | <div class="grid md:grid-cols-2 gap-8"> |
| | <div> |
| | <h4 class="font-bold mb-2">Matériaux & Fabrication</h4> |
| | <ul class="space-y-2"> |
| | <li class="flex justify-between py-2 border-b"><span class="text-gray-600">Matériau principal</span> <span>Bois d'ébène</span></li> |
| | <li class="flex justify-between py-2 border-b"><span class="text-gray-600">Origine</span> <span>Kumasi, Ghana</span></li> |
| | <li class="flex justify-between py-2 border-b"><span class="text-gray-600">Artisan</span> <span>Kwame Osei</span></li> |
| | <li class="flex justify-between py-2 border-b"><span class="text-gray-600">Temps de fabrication</span> <span>120 heures</span></li> |
| | <li class="flex justify-between py-2 border-b"><span class="text-gray-600">Technique</span> <span>Sculpture à la main</span></li> |
| | </ul> |
| | </div> |
| | <div> |
| | <h4 class="font-bold mb-2">Dimensions & Poids</h4> |
| | <ul class="space-y-2"> |
| | <li class="flex justify-between py-2 border-b"><span class="text-gray-600">Hauteur</span> <span>35 cm</span></li> |
| | <li class="flex justify-between py-2 border-b"><span class="text-gray-600">Largeur</span> <span>12 cm</span></li> |
| | <li class="flex justify-between py-2 border-b"><span class="text-gray-600">Profondeur</span> <span>10 cm</span></li> |
| | <li class="flex justify-between py-2 border-b"><span class="text-gray-600">Poids</span> <span>1.2 kg</span></li> |
| | <li class="flex justify-between py-2 border-b"><span class="text-gray-600">Finition</span> <span>Cire d'abeille naturelle</span></li> |
| | </ul> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | <div id="shipping" class="tab-content hidden"> |
| | <h3 class="title-font text-2xl font-bold mb-4 text-amber-900">Livraison & Retours</h3> |
| | <div class="space-y-6"> |
| | <div> |
| | <h4 class="font-bold mb-2">Options de livraison</h4> |
| | <ul class="space-y-3"> |
| | <li class="flex items-start"> |
| | <i class="fas fa-truck text-amber-500 mt-1 mr-3"></i> |
| | <div> |
| | <p class="font-medium">Livraison standard</p> |
| | <p class="text-sm text-gray-600">3-5 jours ouvrables - 5 000 FCFA</p> |
| | </div> |
| | </li> |
| | <li class="flex items-start"> |
| | <i class="fas fa-bolt text-amber-500 mt-1 mr-3"></i> |
| | <div> |
| | <p class="font-medium">Livraison express</p> |
| | <p class="text-sm text-gray-600">1-2 jours ouvrables - 10 000 FCFA</p> |
| | </div> |
| | </li> |
| | <li class="flex items-start"> |
| | <i class="fas fa-store text-amber-500 mt-1 mr-3"></i> |
| | <div> |
| | <p class="font-medium">Retrait en point relais</p> |
| | <p class="text-sm text-gray-600">2-3 jours ouvrables - 3 000 FCFA</p> |
| | </div> |
| | </li> |
| | </ul> |
| | </div> |
| | |
| | <div> |
| | <h4 class="font-bold mb-2">Politique de retour</h4> |
| | <p>Nous acceptons les retours sous 14 jours après réception. L'article doit être dans son état original, non utilisé et dans son emballage d'origine. Les frais de retour sont à la charge du client.</p> |
| | </div> |
| | |
| | <div> |
| | <h4 class="font-bold mb-2">Emballage</h4> |
| | <p>Votre statue sera emballée avec le plus grand soin dans un coffret en bois recyclé, rembourré de tissu traditionnel wax pour une protection optimale pendant le transport.</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | |
| | <div class="bg-amber-50 py-16"> |
| | <div class="container mx-auto px-4"> |
| | <h2 class="title-font text-3xl font-bold text-center mb-12 text-amber-900">Ce que disent nos clients</h2> |
| | |
| | <div class="grid md:grid-cols-3 gap-8"> |
| | <div class="testimonial-card p-6 rounded-xl shadow-md"> |
| | <div class="flex items-center mb-4"> |
| | <div class="flex text-amber-400"> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | </div> |
| | </div> |
| | <p class="mb-4 italic">"La statue est encore plus belle en réalité. La finition est impeccable et l'énergie qu'elle dégage est palpable. Un véritable chef-d'œuvre artisanal."</p> |
| | <div class="flex items-center"> |
| | <div class="w-10 h-10 rounded-full bg-amber-200 flex items-center justify-center mr-3"> |
| | <span class="font-bold text-amber-700">AK</span> |
| | </div> |
| | <div> |
| | <p class="font-medium">Aïssatou K.</p> |
| | <p class="text-sm text-gray-600">Abidjan, Côte d'Ivoire</p> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | <div class="testimonial-card p-6 rounded-xl shadow-md"> |
| | <div class="flex items-center mb-4"> |
| | <div class="flex text-amber-400"> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | </div> |
| | </div> |
| | <p class="mb-4 italic">"Commande arrivée plus vite que prévu. L'emballage était soigné et la statue correspond parfaitement à la description. Je recommande vivement ce vendeur sérieux."</p> |
| | <div class="flex items-center"> |
| | <div class="w-10 h-10 rounded-full bg-amber-200 flex items-center justify-center mr-3"> |
| | <span class="font-bold text-amber-700">MB</span> |
| | </div> |
| | <div> |
| | <p class="font-medium">Mamadou B.</p> |
| | <p class="text-sm text-gray-600">Dakar, Sénégal</p> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | <div class="testimonial-card p-6 rounded-xl shadow-md"> |
| | <div class="flex items-center mb-4"> |
| | <div class="flex text-amber-400"> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star"></i> |
| | <i class="fas fa-star-half-alt"></i> |
| | </div> |
| | </div> |
| | <p class="mb-4 italic">"Magnifique pièce qui trône maintenant dans mon salon. Les détails de la sculpture sont impressionnants. Un achat que je ne regrette pas, même si le prix est un peu élevé."</p> |
| | <div class="flex items-center"> |
| | <div class="w-10 h-10 rounded-full bg-amber-200 flex items-center justify-center mr-3"> |
| | <span class="font-bold text-amber-700">FD</span> |
| | </div> |
| | <div> |
| | <p class="font-medium">Fatou D.</p> |
| | <p class="text-sm text-gray-600">Lomé, Togo</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | |
| | <div class="py-12 bg-white"> |
| | <div class="container mx-auto px-4"> |
| | <div class="grid md:grid-cols-4 gap-8 text-center"> |
| | <div class="p-4"> |
| | <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| | <i class="fas fa-award text-2xl text-amber-600"></i> |
| | </div> |
| | <h3 class="font-bold mb-2">Authenticité garantie</h3> |
| | <p class="text-sm text-gray-600">Certificat d'authenticité inclus avec chaque pièce</p> |
| | </div> |
| | <div class="p-4"> |
| | <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| | <i class="fas fa-leaf text-2xl text-amber-600"></i> |
| | </div> |
| | <h3 class="font-bold mb-2">Matériaux naturels</h3> |
| | <p class="text-sm text-gray-600">Bois, pigments et cire 100% naturels</p> |
| | </div> |
| | <div class="p-4"> |
| | <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| | <i class="fas fa-hands-helping text-2xl text-amber-600"></i> |
| | </div> |
| | <h3 class="font-bold mb-2">Commerce équitable</h3> |
| | <p class="text-sm text-gray-600">Rémunération juste des artisans</p> |
| | </div> |
| | <div class="p-4"> |
| | <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| | <i class="fas fa-shield-alt text-2xl text-amber-600"></i> |
| | </div> |
| | <h3 class="font-bold mb-2">Paiement sécurisé</h3> |
| | <p class="text-sm text-gray-600">Cryptage SSL pour toutes les transactions</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | |
| | <footer class="bg-amber-900 text-white py-8"> |
| | <div class="container mx-auto px-4"> |
| | <div class="flex flex-col md:flex-row justify-between items-center"> |
| | <div class="mb-4 md:mb-0"> |
| | <h2 class="title-font text-2xl font-bold mb-2">Artisanat d'Afrique</h2> |
| | <p>Préservons ensemble les traditions artisanales africaines</p> |
| | </div> |
| | <div class="flex space-x-6"> |
| | <a href="#" class="hover:text-amber-200"><i class="fab fa-facebook-f"></i></a> |
| | <a href="#" class="hover:text-amber-200"><i class="fab fa-instagram"></i></a> |
| | <a href="#" class="hover:text-amber-200"><i class="fab fa-whatsapp"></i></a> |
| | </div> |
| | </div> |
| | <div class="border-t border-amber-700 mt-8 pt-8 text-sm text-center md:text-left"> |
| | <p>© 2023 Artisanat d'Afrique. Tous droits réservés.</p> |
| | </div> |
| | </div> |
| | </footer> |
| | |
| | <script> |
| | |
| | function openTab(tabName) { |
| | const tabContents = document.getElementsByClassName('tab-content'); |
| | for (let i = 0; i < tabContents.length; i++) { |
| | tabContents[i].classList.add('hidden'); |
| | } |
| | |
| | const tabButtons = document.getElementsByClassName('tab-btn'); |
| | for (let i = 0; i < tabButtons.length; i++) { |
| | tabButtons[i].classList.remove('border-b-2', 'border-amber-500', 'text-amber-600'); |
| | tabButtons[i].classList.add('text-gray-500'); |
| | } |
| | |
| | document.getElementById(tabName).classList.remove('hidden'); |
| | event.currentTarget.classList.remove('text-gray-500'); |
| | event.currentTarget.classList.add('border-b-2', 'border-amber-500', 'text-amber-600'); |
| | } |
| | |
| | |
| | function updateQuantity(change) { |
| | const quantityElement = document.getElementById('quantity'); |
| | let quantity = parseInt(quantityElement.textContent); |
| | quantity += change; |
| | |
| | if (quantity < 1) quantity = 1; |
| | if (quantity > 10) quantity = 10; |
| | |
| | quantityElement.textContent = quantity; |
| | } |
| | |
| | |
| | document.addEventListener('DOMContentLoaded', function() { |
| | const elements = document.querySelectorAll('.product-image, .btn-africa'); |
| | elements.forEach(el => { |
| | el.style.opacity = '0'; |
| | el.style.transform = 'translateY(20px)'; |
| | }); |
| | |
| | setTimeout(() => { |
| | elements.forEach((el, index) => { |
| | setTimeout(() => { |
| | el.style.transition = 'opacity 0.5s ease, transform 0.5s ease'; |
| | el.style.opacity = '1'; |
| | el.style.transform = 'translateY(0)'; |
| | }, index * 100); |
| | }); |
| | }, 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=diallo76/sb" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| | </html> |