| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Aliachic - Fashion & Lifestyle</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> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| primary: '#FF6B6B', |
| secondary: '#4ECDC4', |
| accent: '#FFD166', |
| dark: '#1A1A1A', |
| light: '#F7F7F7' |
| } |
| } |
| } |
| } |
| </script> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); |
| body { |
| font-family: 'Poppins', sans-serif; |
| background-color: #fafafa; |
| } |
| .hero-bg { |
| background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1483985988355-763728e1935b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| .product-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| .category-card { |
| transition: all 0.3s ease; |
| } |
| .category-card:hover { |
| transform: scale(1.05); |
| } |
| .cart-item:hover { |
| background-color: #f0f0f0; |
| } |
| .mobile-menu { |
| max-height: 0; |
| overflow: hidden; |
| transition: max-height 0.3s ease-out; |
| } |
| .mobile-menu.active { |
| max-height: 500px; |
| } |
| .floating-cart { |
| animation: float 3s ease-in-out infinite; |
| } |
| @keyframes float { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-10px); } |
| 100% { transform: translateY(0px); } |
| } |
| </style> |
| </head> |
| <body class="text-gray-800"> |
| |
| <header class="bg-white shadow-md sticky top-0 z-50"> |
| <div class="container mx-auto px-4 py-3"> |
| <div class="flex justify-between items-center"> |
| |
| <div class="flex items-center"> |
| <h1 class="text-2xl font-bold text-primary">Aliachic</h1> |
| </div> |
| |
| |
| <nav class="hidden md:flex space-x-8"> |
| <a href="#" class="font-medium hover:text-primary transition">Home</a> |
| <a href="#" class="font-medium hover:text-primary transition">Shop</a> |
| <a href="#" class="font-medium hover:text-primary transition">Categories</a> |
| <a href="#" class="font-medium hover:text-primary transition">New Arrivals</a> |
| <a href="#" class="font-medium hover:text-primary transition">Sale</a> |
| <a href="#" class="font-medium hover:text-primary transition">About</a> |
| </nav> |
| |
| |
| <div class="flex items-center space-x-5"> |
| <button class="relative"> |
| <i class="fas fa-search text-xl"></i> |
| </button> |
| <button class="relative"> |
| <i class="fas fa-user text-xl"></i> |
| </button> |
| <button class="relative cart-btn"> |
| <i class="fas fa-shopping-bag text-xl"></i> |
| <span class="absolute -top-2 -right-2 bg-primary text-white text-xs rounded-full h-5 w-5 flex items-center justify-center">3</span> |
| </button> |
| |
| |
| <button id="mobile-menu-button" class="md:hidden text-xl"> |
| <i class="fas fa-bars"></i> |
| </button> |
| </div> |
| </div> |
| |
| |
| <div id="mobile-menu" class="mobile-menu md:hidden mt-4 pb-4"> |
| <div class="flex flex-col space-y-3"> |
| <a href="#" class="font-medium hover:text-primary transition py-2">Home</a> |
| <a href="#" class="font-medium hover:text-primary transition py-2">Shop</a> |
| <a href="#" class="font-medium hover:text-primary transition py-2">Categories</a> |
| <a href="#" class="font-medium hover:text-primary transition py-2">New Arrivals</a> |
| <a href="#" class="font-medium hover:text-primary transition py-2">Sale</a> |
| <a href="#" class="font-medium hover:text-primary transition py-2">About</a> |
| </div> |
| </div> |
| </div> |
| </header> |
|
|
| |
| <section class="hero-bg h-96 md:h-[500px] flex items-center"> |
| <div class="container mx-auto px-4 text-center"> |
| <h1 class="text-4xl md:text-6xl font-bold text-white mb-4">Summer Collection 2023</h1> |
| <p class="text-xl text-white mb-8 max-w-2xl mx-auto">Discover our latest fashion trends for the season. Up to 50% off on selected items.</p> |
| <button class="bg-primary hover:bg-red-500 text-white font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105"> |
| Shop Now |
| </button> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-light"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-3xl font-bold text-center mb-12">Shop By Category</h2> |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-6"> |
| |
| <div class="category-card bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="h-48 bg-gray-200 flex items-center justify-center"> |
| <img src="https://images.unsplash.com/photo-1525507119028-ed4c629a60a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=735&q=80" alt="Dresses" class="h-full w-full object-cover"> |
| </div> |
| <div class="p-4 text-center"> |
| <h3 class="font-bold text-lg">Dresses</h3> |
| <p class="text-gray-500 text-sm">24 items</p> |
| </div> |
| </div> |
| |
| |
| <div class="category-card bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="h-48 bg-gray-200 flex items-center justify-center"> |
| <img src="https://images.unsplash.com/photo-1591047139829-d91aecb6caea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=736&q=80" alt="Tops" class="h-full w-full object-cover"> |
| </div> |
| <div class="p-4 text-center"> |
| <h3 class="font-bold text-lg">Tops</h3> |
| <p class="text-gray-500 text-sm">32 items</p> |
| </div> |
| </div> |
| |
| |
| <div class="category-card bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="h-48 bg-gray-200 flex items-center justify-center"> |
| <img src="https://images.unsplash.com/photo-1541099649105-f69ad21f3246?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Bottoms" class="h-full w-full object-cover"> |
| </div> |
| <div class="p-4 text-center"> |
| <h3 class="font-bold text-lg">Bottoms</h3> |
| <p class="text-gray-500 text-sm">28 items</p> |
| </div> |
| </div> |
| |
| |
| <div class="category-card bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="h-48 bg-gray-200 flex items-center justify-center"> |
| <img src="https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80" alt="Accessories" class="h-full w-full object-cover"> |
| </div> |
| <div class="p-4 text-center"> |
| <h3 class="font-bold text-lg">Accessories</h3> |
| <p class="text-gray-500 text-sm">45 items</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16"> |
| <div class="container mx-auto px-4"> |
| <div class="flex justify-between items-center mb-12"> |
| <h2 class="text-3xl font-bold">Featured Products</h2> |
| <a href="#" class="text-primary font-medium hover:underline">View All</a> |
| </div> |
| |
| <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8"> |
| |
| <div class="product-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> |
| <div class="relative"> |
| <div class="h-64 bg-gray-200 flex items-center justify-center"> |
| <img src="https://images.unsplash.com/photo-1525507119028-ed4c629a60a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=735&q=80" alt="Floral Dress" class="h-full w-full object-cover"> |
| </div> |
| <div class="absolute top-3 right-3 bg-primary text-white text-xs font-bold px-2 py-1 rounded"> |
| SALE |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-start"> |
| <div> |
| <h3 class="font-bold text-lg">Floral Summer Dress</h3> |
| <p class="text-gray-500 text-sm">Women's Clothing</p> |
| </div> |
| <div class="flex items-center bg-yellow-100 text-yellow-800 px-2 py-1 rounded"> |
| <i class="fas fa-star text-xs"></i> |
| <span class="text-xs font-bold ml-1">4.8</span> |
| </div> |
| </div> |
| <div class="mt-3 flex justify-between items-center"> |
| <div> |
| <span class="text-primary font-bold text-lg">$49.99</span> |
| <span class="text-gray-500 line-through text-sm ml-2">$69.99</span> |
| </div> |
| <button class="bg-primary hover:bg-red-500 text-white rounded-full w-8 h-8 flex items-center justify-center transition"> |
| <i class="fas fa-plus"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> |
| <div class="relative"> |
| <div class="h-64 bg-gray-200 flex items-center justify-center"> |
| <img src="https://images.unsplash.com/photo-1591047139829-d91aecb6caea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=736&q=80" alt="Casual Top" class="h-full w-full object-cover"> |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-start"> |
| <div> |
| <h3 class="font-bold text-lg">Casual Cotton Top</h3> |
| <p class="text-gray-500 text-sm">Women's Clothing</p> |
| </div> |
| <div class="flex items-center bg-yellow-100 text-yellow-800 px-2 py-1 rounded"> |
| <i class="fas fa-star text-xs"></i> |
| <span class="text-xs font-bold ml-1">4.6</span> |
| </div> |
| </div> |
| <div class="mt-3 flex justify-between items-center"> |
| <div> |
| <span class="text-primary font-bold text-lg">$29.99</span> |
| </div> |
| <button class="bg-primary hover:bg-red-500 text-white rounded-full w-8 h-8 flex items-center justify-center transition"> |
| <i class="fas fa-plus"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> |
| <div class="relative"> |
| <div class="h-64 bg-gray-200 flex items-center justify-center"> |
| <img src="https://images.unsplash.com/photo-1541099649105-f69ad21f3246?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80" alt="Jeans" class="h-full w-full object-cover"> |
| </div> |
| <div class="absolute top-3 right-3 bg-accent text-gray-800 text-xs font-bold px-2 py-1 rounded"> |
| NEW |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-start"> |
| <div> |
| <h3 class="font-bold text-lg">High Waist Jeans</h3> |
| <p class="text-gray-500 text-sm">Women's Clothing</p> |
| </div> |
| <div class="flex items-center bg-yellow-100 text-yellow-800 px-2 py-1 rounded"> |
| <i class="fas fa-star text-xs"></i> |
| <span class="text-xs font-bold ml-1">4.7</span> |
| </div> |
| </div> |
| <div class="mt-3 flex justify-between items-center"> |
| <div> |
| <span class="text-primary font-bold text-lg">$59.99</span> |
| </div> |
| <button class="bg-primary hover:bg-red-500 text-white rounded-full w-8 h-8 flex items-center justify-center transition"> |
| <i class="fas fa-plus"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> |
| <div class="relative"> |
| <div class="h-64 bg-gray-200 flex items-center justify-center"> |
| <img src="https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80" alt="Handbag" class="h-full w-full object-cover"> |
| </div> |
| </div> |
| <div class="p-4"> |
| <div class="flex justify-between items-start"> |
| <div> |
| <h3 class="font-bold text-lg">Leather Handbag</h3> |
| <p class="text-gray-500 text-sm">Accessories</p> |
| </div> |
| <div class="flex items-center bg-yellow-100 text-yellow-800 px-2 py-1 rounded"> |
| <i class="fas fa-star text-xs"></i> |
| <span class="text-xs font-bold ml-1">4.9</span> |
| </div> |
| </div> |
| <div class="mt-3 flex justify-between items-center"> |
| <div> |
| <span class="text-primary font-bold text-lg">$89.99</span> |
| </div> |
| <button class="bg-primary hover:bg-red-500 text-white rounded-full w-8 h-8 flex items-center justify-center transition"> |
| <i class="fas fa-plus"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-gradient-to-r from-primary to-secondary"> |
| <div class="container mx-auto px-4 text-center"> |
| <h2 class="text-3xl md:text-4xl font-bold text-white mb-4">Special Summer Offer</h2> |
| <p class="text-white text-xl mb-8 max-w-2xl mx-auto">Get 30% off on all summer collections. Limited time offer!</p> |
| <div class="flex justify-center mb-8"> |
| <div class="flex space-x-4"> |
| <div class="bg-white bg-opacity-20 rounded-lg p-4 text-center"> |
| <div class="text-2xl font-bold text-white">02</div> |
| <div class="text-white text-sm">Days</div> |
| </div> |
| <div class="bg-white bg-opacity-20 rounded-lg p-4 text-center"> |
| <div class="text-2xl font-bold text-white">18</div> |
| <div class="text-white text-sm">Hours</div> |
| </div> |
| <div class="bg-white bg-opacity-20 rounded-lg p-4 text-center"> |
| <div class="text-2xl font-bold text-white">45</div> |
| <div class="text-white text-sm">Minutes</div> |
| </div> |
| <div class="bg-white bg-opacity-20 rounded-lg p-4 text-center"> |
| <div class="text-2xl font-bold text-white">30</div> |
| <div class="text-white text-sm">Seconds</div> |
| </div> |
| </div> |
| </div> |
| <button class="bg-white text-primary font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105"> |
| Shop Collection |
| </button> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-light"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-3xl font-bold text-center mb-12">What Our Customers Say</h2> |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <div class="flex items-center mb-4"> |
| <div class="w-12 h-12 rounded-full bg-gray-300 mr-4"></div> |
| <div> |
| <h4 class="font-bold">Sarah Johnson</h4> |
| <div class="flex text-yellow-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> |
| </div> |
| <p class="text-gray-600">"The quality of the clothes is amazing! I've ordered multiple items and they all exceeded my expectations. Fast shipping too!"</p> |
| </div> |
| |
| |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <div class="flex items-center mb-4"> |
| <div class="w-12 h-12 rounded-full bg-gray-300 mr-4"></div> |
| <div> |
| <h4 class="font-bold">Michael Chen</h4> |
| <div class="flex text-yellow-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> |
| </div> |
| <p class="text-gray-600">"Great customer service and the items arrived in perfect condition. Will definitely shop here again!"</p> |
| </div> |
| |
| |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <div class="flex items-center mb-4"> |
| <div class="w-12 h-12 rounded-full bg-gray-300 mr-4"></div> |
| <div> |
| <h4 class="font-bold">Emma Rodriguez</h4> |
| <div class="flex text-yellow-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> |
| </div> |
| <p class="text-gray-600">"I love the variety of styles available. The sizes are true to fit and the prices are very reasonable for the quality."</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16"> |
| <div class="container mx-auto px-4"> |
| <div class="bg-white rounded-xl shadow-lg p-8 md:p-12 max-w-4xl mx-auto"> |
| <div class="flex flex-col md:flex-row items-center"> |
| <div class="md:w-1/2 mb-8 md:mb-0"> |
| <h2 class="text-3xl font-bold mb-4">Join Our Newsletter</h2> |
| <p class="text-gray-600 mb-6">Subscribe to get special offers, free giveaways, and new product alerts.</p> |
| <div class="flex"> |
| <input type="email" placeholder="Your email address" class="border border-gray-300 rounded-l-lg px-4 py-3 w-full focus:outline-none focus:ring-2 focus:ring-primary"> |
| <button class="bg-primary hover:bg-red-500 text-white font-bold py-3 px-6 rounded-r-lg transition"> |
| Subscribe |
| </button> |
| </div> |
| </div> |
| <div class="md:w-1/2 flex justify-center"> |
| <div class="relative"> |
| <div class="w-48 h-48 bg-primary rounded-full opacity-20 absolute -top-6 -left-6"></div> |
| <div class="w-48 h-48 bg-secondary rounded-full opacity-20 absolute -bottom-6 -right-6"></div> |
| <div class="relative z-10 floating-cart"> |
| <i class="fas fa-shopping-bag text-9xl text-primary"></i> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-dark text-white pt-16 pb-8"> |
| <div class="container mx-auto px-4"> |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 mb-12"> |
| <div> |
| <h3 class="text-2xl font-bold mb-4 text-primary">Aliachic</h3> |
| <p class="text-gray-400 mb-4">Your destination for trendy and affordable fashion. Quality clothing for every occasion.</p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-pinterest"></i></a> |
| </div> |
| </div> |
| |
| <div> |
| <h4 class="text-lg font-bold mb-4">Quick Links</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Shop</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li> |
| <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">FAQs</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h4 class="text-lg font-bold mb-4">Customer Service</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Shipping Policy</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Return Policy</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Terms & Conditions</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Track Order</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h4 class="text-lg font-bold mb-4">Contact Info</h4> |
| <ul class="space-y-3 text-gray-400"> |
| <li class="flex items-start"> |
| <i class="fas fa-map-marker-alt mt-1 mr-3"></i> |
| <span>123 Fashion Street, New York, NY 10001</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-phone-alt mr-3"></i> |
| <span>+1 (555) 123-4567</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-envelope mr-3"></i> |
| <span>info@aliachic.com</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-800 pt-8 text-center text-gray-500"> |
| <p>© 2023 Aliachic. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| const mobileMenuButton = document.getElementById('mobile-menu-button'); |
| const mobileMenu = document.getElementById('mobile-menu'); |
| |
| mobileMenuButton.addEventListener('click', () => { |
| mobileMenu.classList.toggle('active'); |
| }); |
| |
| |
| const cartBtn = document.querySelector('.cart-btn'); |
| cartBtn.addEventListener('click', () => { |
| cartBtn.classList.add('animate-bounce'); |
| setTimeout(() => { |
| cartBtn.classList.remove('animate-bounce'); |
| }, 1000); |
| }); |
| |
| |
| const addToCartButtons = document.querySelectorAll('.product-card button'); |
| addToCartButtons.forEach(button => { |
| button.addEventListener('click', function() { |
| this.innerHTML = '<i class="fas fa-check"></i>'; |
| this.classList.remove('bg-primary'); |
| this.classList.add('bg-green-500'); |
| |
| setTimeout(() => { |
| this.innerHTML = '<i class="fas fa-plus"></i>'; |
| this.classList.remove('bg-green-500'); |
| this.classList.add('bg-primary'); |
| }, 2000); |
| }); |
| }); |
| </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=Vrtx-09/v" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |