Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>LUMIÈRE - Premium Beauty Serum</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=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap'); | |
| body { | |
| font-family: 'Poppins', sans-serif; | |
| scroll-behavior: smooth; | |
| } | |
| .playfair { | |
| font-family: 'Playfair Display', serif; | |
| } | |
| .hero-gradient { | |
| background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fc 100%); | |
| } | |
| .serum-bottle { | |
| filter: drop-shadow(0 20px 30px rgba(149, 107, 190, 0.3)); | |
| } | |
| .ingredient-card:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .testimonial-card { | |
| background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%); | |
| box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff; | |
| } | |
| .glow-effect { | |
| position: relative; | |
| } | |
| .glow-effect::after { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, transparent 70%); | |
| opacity: 0; | |
| transition: opacity 0.3s ease; | |
| } | |
| .glow-effect:hover::after { | |
| opacity: 1; | |
| } | |
| .scroll-indicator { | |
| animation: bounce 2s infinite; | |
| } | |
| @keyframes bounce { | |
| 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} | |
| 40% {transform: translateY(-20px);} | |
| 60% {transform: translateY(-10px);} | |
| } | |
| .floating { | |
| animation: floating 6s ease-in-out infinite; | |
| } | |
| @keyframes floating { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-15px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-white text-gray-800"> | |
| <!-- Navigation --> | |
| <nav class="fixed w-full bg-white bg-opacity-90 backdrop-blur-sm z-50 shadow-sm"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-20 items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <span class="playfair text-2xl font-bold text-purple-800">LUMIÈRE</span> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-10 flex items-center space-x-8"> | |
| <a href="#features" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Features</a> | |
| <a href="#ingredients" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Ingredients</a> | |
| <a href="#testimonials" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">Testimonials</a> | |
| <a href="#faq" class="text-gray-700 hover:text-purple-600 px-3 py-2 text-sm font-medium">FAQ</a> | |
| </div> | |
| </div> | |
| <div class="hidden md:block"> | |
| <button class="ml-8 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-full text-white bg-gradient-to-r from-purple-600 to-pink-500 shadow-sm hover:from-purple-700 hover:to-pink-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500"> | |
| Pre-order Now | |
| </button> | |
| </div> | |
| <div class="md:hidden"> | |
| <button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-purple-600 focus:outline-none"> | |
| <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> | |
| </svg> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg"> | |
| <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
| <a href="#features" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">Features</a> | |
| <a href="#ingredients" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">Ingredients</a> | |
| <a href="#testimonials" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">Testimonials</a> | |
| <a href="#faq" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-purple-600 hover:bg-gray-50">FAQ</a> | |
| <button class="w-full mt-2 inline-flex items-center justify-center px-4 py-2 border border-transparent text-base font-medium rounded-full text-white bg-gradient-to-r from-purple-600 to-pink-500 shadow-sm hover:from-purple-700 hover:to-pink-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500"> | |
| Pre-order Now | |
| </button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="hero-gradient pt-24 pb-16 md:pt-32 md:pb-24"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:grid lg:grid-cols-12 lg:gap-8"> | |
| <div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left lg:flex lg:items-center"> | |
| <div> | |
| <h1 class="playfair text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl"> | |
| <span class="block">Radiant Skin</span> | |
| <span class="block text-transparent bg-clip-text bg-gradient-to-r from-purple-600 to-pink-500">Starts Here</span> | |
| </h1> | |
| <p class="mt-3 text-base text-gray-600 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0"> | |
| Our premium beauty serum combines nature's most powerful ingredients with cutting-edge science to reveal your skin's natural luminosity. | |
| </p> | |
| <div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0"> | |
| <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4"> | |
| <button class="glow-effect flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-full text-white bg-gradient-to-r from-purple-600 to-pink-500 shadow-sm hover:from-purple-700 hover:to-pink-600 md:py-4 md:text-lg md:px-10"> | |
| Shop Now | |
| </button> | |
| <button class="flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-full text-purple-700 bg-purple-100 hover:bg-purple-200 md:py-4 md:text-lg md:px-10"> | |
| <i class="fas fa-play-circle mr-2"></i> Watch Demo | |
| </button> | |
| </div> | |
| <p class="mt-3 text-xs text-gray-500"> | |
| 30-day money back guarantee. Dermatologist tested. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center"> | |
| <div class="relative mx-auto w-full rounded-lg lg:max-w-md"> | |
| <img class="w-full serum-bottle floating" src="https://i.ibb.co/0XJ3W0y/serum-bottle.png" alt="LUMIÈRE Beauty Serum"> | |
| </div> | |
| <div class="absolute -bottom-10 -left-10 w-32 h-32 bg-purple-200 rounded-full filter blur-xl opacity-30 animate-pulse"></div> | |
| <div class="absolute -top-10 -right-10 w-32 h-32 bg-pink-200 rounded-full filter blur-xl opacity-30 animate-pulse delay-300"></div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="scroll-indicator absolute bottom-8 left-1/2 transform -translate-x-1/2 text-purple-600"> | |
| <i class="fas fa-chevron-down text-2xl"></i> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section id="features" class="py-16 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="playfair text-base text-purple-600 font-semibold tracking-wide uppercase">Features</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Transform Your Skin | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-600 lg:mx-auto"> | |
| Experience the power of our scientifically-formulated serum that works with your skin's natural biology. | |
| </p> | |
| </div> | |
| <div class="mt-20"> | |
| <div class="space-y-10 md:space-y-0 md:grid md:grid-cols-3 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-100 text-purple-600"> | |
| <i class="fas fa-spa text-xl"></i> | |
| </div> | |
| <p class="ml-16 text-lg leading-6 font-medium text-gray-900">Deep Hydration</p> | |
| <p class="mt-2 ml-16 text-base text-gray-600"> | |
| Our hyaluronic acid complex delivers 24-hour hydration, plumping skin and reducing the appearance of fine lines. | |
| </p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600"> | |
| <i class="fas fa-sun text-xl"></i> | |
| </div> | |
| <p class="ml-16 text-lg leading-6 font-medium text-gray-900">Brightening Effect</p> | |
| <p class="mt-2 ml-16 text-base text-gray-600"> | |
| Vitamin C and niacinamide work synergistically to fade dark spots and even out skin tone for a radiant glow. | |
| </p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600"> | |
| <i class="fas fa-shield-alt text-xl"></i> | |
| </div> | |
| <p class="ml-16 text-lg leading-6 font-medium text-gray-900">Antioxidant Protection</p> | |
| <p class="mt-2 ml-16 text-base text-gray-600"> | |
| Powerful antioxidants shield skin from environmental stressors and free radicals that accelerate aging. | |
| </p> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600"> | |
| <i class="fas fa-leaf text-xl"></i> | |
| </div> | |
| <p class="ml-16 text-lg leading-6 font-medium text-gray-900">Natural Ingredients</p> | |
| <p class="mt-2 ml-16 text-base text-gray-600"> | |
| Formulated with 97% naturally-derived ingredients, free from parabens, sulfates, and synthetic fragrances. | |
| </p> | |
| </div> | |
| <!-- Feature 5 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600"> | |
| <i class="fas fa-clock text-xl"></i> | |
| </div> | |
| <p class="ml-16 text-lg leading-6 font-medium text-gray-900">Fast Absorption</p> | |
| <p class="mt-2 ml-16 text-base text-gray-600"> | |
| Our lightweight formula absorbs quickly without leaving a greasy residue, perfect for layering with other products. | |
| </p> | |
| </div> | |
| <!-- Feature 6 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600"> | |
| <i class="fas fa-heart text-xl"></i> | |
| </div> | |
| <p class="ml-16 text-lg leading-6 font-medium text-gray-900">Dermatologist Approved</p> | |
| <p class="mt-2 ml-16 text-base text-gray-600"> | |
| Clinically tested and recommended by dermatologists for all skin types, including sensitive skin. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Ingredients Section --> | |
| <section id="ingredients" class="py-16 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="playfair text-base text-purple-600 font-semibold tracking-wide uppercase">Key Ingredients</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Science Meets Nature | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-600 lg:mx-auto"> | |
| Our potent blend of active ingredients delivers visible results without compromise. | |
| </p> | |
| </div> | |
| <div class="mt-16 grid gap-8 md:grid-cols-2 lg:grid-cols-4"> | |
| <!-- Ingredient 1 --> | |
| <div class="ingredient-card bg-white rounded-xl overflow-hidden shadow-md transition-all duration-300 ease-in-out"> | |
| <div class="h-48 bg-gradient-to-br from-purple-100 to-pink-100 flex items-center justify-center"> | |
| <i class="fas fa-tint text-6xl text-purple-500 opacity-70"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold text-gray-900">Hyaluronic Acid</h3> | |
| <p class="mt-2 text-gray-600"> | |
| Holds 1000x its weight in water to deeply hydrate and plump skin, reducing the appearance of fine lines. | |
| </p> | |
| <div class="mt-4 flex items-center"> | |
| <span class="text-xs font-semibold inline-block py-1 px-2 uppercase rounded-full text-purple-600 bg-purple-200"> | |
| Hydration | |
| </span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Ingredient 2 --> | |
| <div class="ingredient-card bg-white rounded-xl overflow-hidden shadow-md transition-all duration-300 ease-in-out"> | |
| <div class="h-48 bg-gradient-to-br from-yellow-100 to-orange-100 flex items-center justify-center"> | |
| <i class="fas fa-sun text-6xl text-yellow-500 opacity-70"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold text-gray-900">Vitamin C</h3> | |
| <p class="mt-2 text-gray-600"> | |
| A potent antioxidant that brightens skin tone, stimulates collagen production, and protects against environmental damage. | |
| </p> | |
| <div class="mt-4 flex items-center"> | |
| <span class="text-xs font-semibold inline-block py-1 px-2 uppercase rounded-full text-yellow-600 bg-yellow-200"> | |
| Brightening | |
| </span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Ingredient 3 --> | |
| <div class="ingredient-card bg-white rounded-xl overflow-hidden shadow-md transition-all duration-300 ease-in-out"> | |
| <div class="h-48 bg-gradient-to-br from-green-100 to-teal-100 flex items-center justify-center"> | |
| <i class="fas fa-seedling text-6xl text-green-500 opacity-70"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold text-gray-900">Niacinamide</h3> | |
| <p class="mt-2 text-gray-600"> | |
| Reduces redness, minimizes pores, and strengthens the skin's moisture barrier for a healthier complexion. | |
| </p> | |
| <div class="mt-4 flex items-center"> | |
| <span class="text-xs font-semibold inline-block py-1 px-2 uppercase rounded-full text-green-600 bg-green-200"> | |
| Soothing | |
| </span> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Ingredient 4 --> | |
| <div class="ingredient-card bg-white rounded-xl overflow-hidden shadow-md transition-all duration-300 ease-in-out"> | |
| <div class="h-48 bg-gradient-to-br from-blue-100 to-indigo-100 flex items-center justify-center"> | |
| <i class="fas fa-feather-alt text-6xl text-blue-500 opacity-70"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold text-gray-900">Peptides</h3> | |
| <p class="mt-2 text-gray-600"> | |
| Signal the skin to produce more collagen, improving elasticity and firmness for a more youthful appearance. | |
| </p> | |
| <div class="mt-4 flex items-center"> | |
| <span class="text-xs font-semibold inline-block py-1 px-2 uppercase rounded-full text-blue-600 bg-blue-200"> | |
| Anti-aging | |
| </span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-16 bg-gradient-to-r from-purple-50 to-pink-50 rounded-xl p-8 md:p-12"> | |
| <div class="md:flex md:items-center md:justify-between"> | |
| <div class="md:w-1/2"> | |
| <h3 class="playfair text-2xl font-bold text-gray-900">Complete Ingredient Transparency</h3> | |
| <p class="mt-4 text-gray-600"> | |
| We believe you should know exactly what you're putting on your skin. Our full ingredient list is available for review, with clear explanations of each component's purpose. | |
| </p> | |
| <button class="mt-6 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-full text-purple-700 bg-white shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500"> | |
| View Full Ingredient List <i class="fas fa-arrow-right ml-2"></i> | |
| </button> | |
| </div> | |
| <div class="mt-8 md:mt-0 md:w-2/5"> | |
| <div class="bg-white p-6 rounded-lg shadow-sm"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-purple-100 rounded-full p-3"> | |
| <i class="fas fa-check-circle text-purple-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-900">No Parabens</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center mt-4"> | |
| <div class="flex-shrink-0 bg-purple-100 rounded-full p-3"> | |
| <i class="fas fa-check-circle text-purple-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-900">No Sulfates</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center mt-4"> | |
| <div class="flex-shrink-0 bg-purple-100 rounded-full p-3"> | |
| <i class="fas fa-check-circle text-purple-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-900">No Synthetic Fragrances</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center mt-4"> | |
| <div class="flex-shrink-0 bg-purple-100 rounded-full p-3"> | |
| <i class="fas fa-check-circle text-purple-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-900">Cruelty Free</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- How to Use Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="playfair text-base text-purple-600 font-semibold tracking-wide uppercase">Routine</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Simple Yet Effective | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-600 lg:mx-auto"> | |
| Incorporate our serum into your skincare routine for maximum benefits. | |
| </p> | |
| </div> | |
| <div class="mt-16"> | |
| <div class="relative"> | |
| <!-- Vertical line --> | |
| <div class="hidden md:block absolute top-0 bottom-0 left-1/2 w-0.5 bg-gradient-to-b from-purple-200 via-pink-200 to-purple-200"></div> | |
| <!-- Steps --> | |
| <div class="relative space-y-8 md:space-y-16"> | |
| <!-- Step 1 --> | |
| <div class="md:flex md:items-center md:group"> | |
| <div class="md:w-1/2 md:pr-12 md:text-right"> | |
| <div class="inline-flex items-center justify-center h-12 w-12 rounded-full bg-purple-100 text-purple-600"> | |
| <span class="text-xl font-bold">1</span> | |
| </div> | |
| <h3 class="mt-4 text-xl font-bold text-gray-900">Cleanse</h3> | |
| <p class="mt-2 text-gray-600"> | |
| Start with clean skin. Gently wash your face with a mild cleanser and pat dry. | |
| </p> | |
| </div> | |
| <div class="mt-8 md:mt-0 md:w-1/2 md:pl-12"> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-purple-100 rounded-full p-3"> | |
| <i class="fas fa-hand-sparkles text-purple-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-900">Tip: Use lukewarm water to avoid stripping natural oils</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Step 2 --> | |
| <div class="md:flex md:items-center md:group"> | |
| <div class="md:w-1/2 md:pr-12 md:order-last md:text-left"> | |
| <div class="inline-flex items-center justify-center h-12 w-12 rounded-full bg-pink-100 text-pink-600"> | |
| <span class="text-xl font-bold">2</span> | |
| </div> | |
| <h3 class="mt-4 text-xl font-bold text-gray-900">Apply Serum</h3> | |
| <p class="mt-2 text-gray-600"> | |
| Dispense 2-3 drops into your palm. Gently press and pat onto face and neck until fully absorbed. | |
| </p> | |
| </div> | |
| <div class="mt-8 md:mt-0 md:w-1/2 md:pl-12 md:order-first"> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-pink-100 rounded-full p-3"> | |
| <i class="fas fa-fingerprint text-pink-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-900">Tip: Press rather than rub to enhance absorption</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Step 3 --> | |
| <div class="md:flex md:items-center md:group"> | |
| <div class="md:w-1/2 md:pr-12 md:text-right"> | |
| <div class="inline-flex items-center justify-center h-12 w-12 rounded-full bg-purple-100 text-purple-600"> | |
| <span class="text-xl font-bold">3</span> | |
| </div> | |
| <h3 class="mt-4 text-xl font-bold text-gray-900">Moisturize</h3> | |
| <p class="mt-2 text-gray-600"> | |
| Follow with your favorite moisturizer to lock in the serum's active ingredients. | |
| </p> | |
| </div> | |
| <div class="mt-8 md:mt-0 md:w-1/2 md:pl-12"> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-purple-100 rounded-full p-3"> | |
| <i class="fas fa-cloud text-purple-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-900">Tip: Wait 1 minute after serum before moisturizing</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Step 4 --> | |
| <div class="md:flex md:items-center md:group"> | |
| <div class="md:w-1/2 md:pr-12 md:order-last md:text-left"> | |
| <div class="inline-flex items-center justify-center h-12 w-12 rounded-full bg-pink-100 text-pink-600"> | |
| <span class="text-xl font-bold">4</span> | |
| </div> | |
| <h3 class="mt-4 text-xl font-bold text-gray-900">Protect (AM)</h3> | |
| <p class="mt-2 text-gray-600"> | |
| In the morning, finish with SPF 30+ sunscreen to protect your skin from UV damage. | |
| </p> | |
| </div> | |
| <div class="mt-8 md:mt-0 md:w-1/2 md:pl-12 md:order-first"> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-pink-100 rounded-full p-3"> | |
| <i class="fas fa-sun text-pink-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-sm font-medium text-gray-900">Tip: Reapply sunscreen every 2 hours when outdoors</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials Section --> | |
| <section id="testimonials" class="py-16 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="playfair text-base text-purple-600 font-semibold tracking-wide uppercase">Testimonials</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Loved by Thousands | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-600 lg:mx-auto"> | |
| Real people. Real results. Here's what our community has to say. | |
| </p> | |
| </div> | |
| <div class="mt-16 grid gap-8 md:grid-cols-2 lg:grid-cols-3"> | |
| <!-- Testimonial 1 --> | |
| <div class="testimonial-card rounded-xl p-8"> | |
| <div class="flex items-center"> | |
| <img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J."> | |
| <div class="ml-4"> | |
| <h4 class="text-lg font-medium text-gray-900">Sarah J.</h4> | |
| <div class="flex mt-1"> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="mt-6 text-gray-600"> | |
| "I've tried countless serums over the years, but nothing compares to LUMIÈRE. Within two weeks, my skin looked brighter and more even. My fine lines have visibly reduced, and my skin feels so hydrated all day." | |
| </p> | |
| <div class="mt-6 pt-6 border-t border-gray-100 flex items-center"> | |
| <i class="fas fa-check-circle text-green-500"></i> | |
| <span class="ml-2 text-sm text-gray-500">Verified Purchase</span> | |
| </div> | |
| </div> | |
| <!-- Testimonial 2 --> | |
| <div class="testimonial-card rounded-xl p-8"> | |
| <div class="flex items-center"> | |
| <img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Maya R."> | |
| <div class="ml-4"> | |
| <h4 class="text-lg font-medium text-gray-900">Maya R.</h4> | |
| <div class="flex mt-1"> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="mt-6 text-gray-600"> | |
| "As someone with sensitive skin, I'm always hesitant to try new products. This serum is a game-changer! No irritation, just glowing skin. My dark spots have faded significantly, and I get compliments on my complexion daily." | |
| </p> | |
| <div class="mt-6 pt-6 border-t border-gray-100 flex items-center"> | |
| <i class="fas fa-check-circle text-green-500"></i> | |
| <span class="ml-2 text-sm text-gray-500">Verified Purchase</span> | |
| </div> | |
| </div> | |
| <!-- Testimonial 3 --> | |
| <div class="testimonial-card rounded-xl p-8"> | |
| <div class="flex items-center"> | |
| <img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Jennifer T."> | |
| <div class="ml-4"> | |
| <h4 class="text-lg font-medium text-gray-900">Jennifer T.</h4> | |
| <div class="flex mt-1"> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="mt-6 text-gray-600"> | |
| "At 52, I was skeptical about seeing real results from any skincare product. After 6 weeks of using LUMIÈRE, my daughter asked if I'd gotten 'work done' because my skin looks so much firmer and youthful. That's the best compliment!" | |
| </p> | |
| <div class="mt-6 pt-6 border-t border-gray-100 flex items-center"> | |
| <i class="fas fa-check-circle text-green-500"></i> | |
| <span class="ml-2 text-sm text-gray-500">Verified Purchase</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-16 text-center"> | |
| <button class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-full text-white bg-gradient-to-r from-purple-600 to-pink-500 shadow-sm hover:from-purple-700 hover:to-pink-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500"> | |
| Read More Reviews <i class="fas fa-arrow-right ml-2"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Before & After Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="playfair text-base text-purple-600 font-semibold tracking-wide uppercase">Results</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Visible Transformation | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-600 lg:mx-auto"> | |
| Real customers. Real results. Clinical studies show significant improvement in just 4 weeks. | |
| </p> | |
| </div> | |
| <div class="mt-16"> | |
| <div class="bg-gray-50 rounded-xl overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-1/2 p-8 md:p-12"> | |
| <h3 class="text-2xl font-bold text-gray-900">Clinical Results</h3> | |
| <p class="mt-4 text-gray-600"> | |
| In an independent 8-week clinical study with 142 participants: | |
| </p> | |
| <div class="mt-8 space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0"> | |
| <div class="flex items-center justify-center h-8 w-8 rounded-full bg-purple-100 text-purple-600"> | |
| <i class="fas fa-percentage"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-lg font-medium text-gray-900">92%</p> | |
| <p class="mt-1 text-gray-600">reported visibly brighter, more even skin tone</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0"> | |
| <div class="flex items-center justify-center h-8 w-8 rounded-full bg-purple-100 text-purple-600"> | |
| <i class="fas fa-percentage"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-lg font-medium text-gray-900">87%</p> | |
| <p class="mt-1 text-gray-600">noticed reduction in fine lines and wrinkles</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0"> | |
| <div class="flex items-center justify-center h-8 w-8 rounded-full bg-purple-100 text-purple-600"> | |
| <i class="fas fa-percentage"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-lg font-medium text-gray-900">95%</p> | |
| <p class="mt-1 text-gray-600">experienced improved skin hydration</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-10"> | |
| <p class="text-xs text-gray-500"> | |
| *Results based on independent clinical study. Individual results may vary. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 bg-gray-200 flex items-center justify-center p-8"> | |
| <div class="relative w-full max-w-md"> | |
| <div class="relative overflow-hidden rounded-xl shadow-lg"> | |
| <div class="flex"> | |
| <div class="w-1/2 border-r border-gray-300"> | |
| <div class="p-4 bg-white"> | |
| <h4 class="text-center font-medium text-gray-900">Before</h4> | |
| </div> | |
| <img class="w-full h-64 object-cover" src="https://i.ibb.co/0mR0RTz/before-skin.jpg" alt="Before using serum"> | |
| </div> | |
| <div class="w-1/2"> | |
| <div class="p-4 bg-white"> | |
| <h4 class="text-center font-medium text-gray-900">After 4 Weeks</h4> | |
| </div> | |
| <img class="w-full h-64 object-cover" src="https://i.ibb.co/4W2LvC0/after-skin.jpg" alt="After using serum"> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-4 flex justify-center"> | |
| <button class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-full text-purple-700 bg-white shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500"> | |
| View More Results <i class="fas fa-images ml-2"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- FAQ Section --> | |
| <section id="faq" class="py-16 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="playfair text-base text-purple-600 font-semibold tracking-wide uppercase">FAQ</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Frequently Asked Questions | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-600 lg:mx-auto"> | |
| Everything you need to know about LUMIÈRE Beauty Serum. | |
| </p> | |
| </div> | |
| <div class="mt-16 max-w-3xl mx-auto"> | |
| <div class="space-y-8"> | |
| <!-- FAQ 1 --> | |
| <div class="bg-white rounded-xl shadow-sm overflow-hidden"> | |
| <button class="faq-toggle w-full flex items-center justify-between p-6 text-left focus:outline-none"> | |
| <h3 class="text-lg font-medium text-gray-900">How soon will I see results?</h3> | |
| <i class="fas fa-chevron-down text-purple-600 transform transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content hidden px-6 pb-6"> | |
| <p class="text-gray-600"> | |
| Many users report noticing a difference in their skin's hydration and brightness within the first week of use. Visible improvements in skin tone, texture, and fine lines typically become apparent after 2-4 weeks of consistent use. For optimal results, we recommend using the serum daily for at least 8 weeks. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- FAQ 2 --> | |
| <div class="bg-white rounded-xl shadow-sm overflow-hidden"> | |
| <button class="faq-toggle w-full flex items-center justify-between p-6 text-left focus:outline-none"> | |
| <h3 class="text-lg font-medium text-gray-900">Is this serum suitable for my skin type?</h3> | |
| <i class="fas fa-chevron-down text-purple-600 transform transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content hidden px-6 pb-6"> | |
| <p class="text-gray-600"> | |
| Our formula is designed to work for all skin types, including sensitive skin. The lightweight, non-comedogenic texture makes it ideal for oily or acne-prone skin, while the intense hydration benefits dry skin. If you have specific concerns, we recommend doing a patch test before full application. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- FAQ 3 --> | |
| <div class="bg-white rounded-xl shadow-sm overflow-hidden"> | |
| <button class="faq-toggle w-full flex items-center justify-between p-6 text-left focus:outline-none"> | |
| <h3 class="text-lg font-medium text-gray-900">Can I use this serum with other skincare products?</h3> | |
| <i class="fas fa-chevron-down text-purple-600 transform transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content hidden px-6 pb-6"> | |
| <p class="text-gray-600"> | |
| Absolutely! Our serum is designed to layer seamlessly with other products. For best results, apply after cleansing and toning, but before heavier creams or oils. It pairs particularly well with our LUMIÈRE moisturizer, but works with any non-comedogenic moisturizer. Avoid using with products containing high concentrations of acids (like glycolic or salicylic) at the same time. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- FAQ 4 --> | |
| <div class="bg-white rounded-xl shadow-sm overflow-hidden"> | |
| <button class="faq-toggle w-full flex items-center justify-between p-6 text-left focus:outline-none"> | |
| <h3 class="text-lg font-medium text-gray-900">How should I store the serum?</h3> | |
| <i class="fas fa-chevron-down text-purple-600 transform transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content hidden px-6 pb-6"> | |
| <p class="text-gray-600"> | |
| To maintain the potency of the active ingredients, store your serum in a cool, dry place away from direct sunlight. The bathroom isn't ideal due to humidity and temperature fluctuations. The amber glass bottle helps protect the formula, but for extra protection, you can keep it in its box when not in use. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- FAQ 5 --> | |
| <div class="bg-white rounded-xl shadow-sm overflow-hidden"> | |
| <button class="faq-toggle w-full flex items-center justify-between p-6 text-left focus:outline-none"> | |
| <h3 class="text-lg font-medium text-gray-900">What's your return policy?</h3> | |
| <i class="fas fa-chevron-down text-purple-600 transform transition-transform duration-300"></i> | |
| </button> | |
| <div class="faq-content hidden px-6 pb-6"> | |
| <p class="text-gray-600"> | |
| We stand behind our product with a 30-day satisfaction guarantee. If you're not completely happy with your results, simply contact our customer service within 30 days of purchase for a full refund. The bottle must be at least 50% full to qualify. We'll even cover return shipping. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 text-center"> | |
| <p class="text-gray-600">Still have questions?</p> | |
| <button class="mt-4 inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-full text-white bg-gradient-to-r from-purple-600 to-pink-500 shadow-sm hover:from-purple-700 hover:to-pink-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500"> | |
| Contact Us <i class="fas fa-envelope ml-2"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-16 bg-gradient-to-r from-purple-800 to-pink-700"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:grid lg:grid-cols-12 lg:gap-8"> | |
| <div class="lg:col-span-7"> | |
| <h2 class="playfair text-3xl font-extrabold text-white sm:text-4xl"> | |
| <span class="block">Ready to reveal your</span> | |
| <span class="block">most radiant skin?</span> | |
| </h2> | |
| <p class="mt-3 text-lg text-purple-100"> | |
| Join thousands of customers who have transformed their skincare routine with LUMIÈRE. | |
| </p> | |
| </div> | |
| <div class="mt-8 lg:mt-0 lg:col-span-5"> | |
| <div class="bg-white rounded-xl shadow-xl overflow-hidden"> | |
| <div class="px-6 py-8 sm:p-10"> | |
| <div class="flex items-center justify-between"> | |
| <h3 class="text-2xl font-bold text-gray-900">Premium Serum</h3> | |
| <div class="flex items-center"> | |
| <span class="text-2xl font-bold text-gray-900">$49</span> | |
| <span class="ml-1 text-sm font-medium text-gray-500">/ bottle</span> | |
| </div> | |
| </div> | |
| <p class="mt-2 text-sm text-gray-600">30ml (1-month supply)</p> | |
| <ul class="mt-6 space-y-4"> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0"> | |
| <i class="fas fa-check-circle text-green-500"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">Free shipping worldwide</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0"> | |
| <i class="fas fa-check-circle text-green-500"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">30-day money back guarantee</p> | |
| </li> | |
| <li class="flex items-start"> | |
| <div class="flex-shrink-0"> | |
| <i class="fas fa-check-circle text-green-500"></i> | |
| </div> | |
| <p class="ml-3 text-sm text-gray-700">Dermatologist approved</p> | |
| </li> | |
| </ul> | |
| <div class="mt-8"> | |
| <button class="w-full flex items-center justify-center px-8 py-4 border border-transparent text-base font-medium rounded-full text-white bg-gradient-to-r from-purple-600 to-pink-500 shadow-sm hover:from-purple-700 hover:to-pink-600 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500"> | |
| Add to Cart <i class="fas fa-shopping-cart ml-2"></i> | |
| </button> | |
| </div> | |
| <div class="mt-4 flex items-center justify-center"> | |
| <img class="h-8" src="https://i.ibb.co/Qfvn4z6/payment.png" alt="Accepted payment methods"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="playfair text-lg font-semibold">LUMIÈRE</h3> | |
| <p class="mt-4 text-sm text-gray-400"> | |
| Premium skincare powered by nature and science. Cruelty-free, sustainable, and effective. | |
| </p> | |
| <div class="mt-4 flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-facebook"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-pinterest"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Shop</h3> | |
| <ul class="mt-4 space-y-2"> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">All Products</a></li> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">Best Sellers</a></li> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">New Arrivals</a></li> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">Gift Sets</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Company</h3> | |
| <ul class="mt-4 space-y-2"> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">About Us</a></li> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">Sustainability</a></li> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">Press</a></li> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">Careers</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Help</h3> | |
| <ul class="mt-4 space-y-2"> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">Customer Service</a></li> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">Track Order</a></li> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">Returns & Exchanges</a></li> | |
| <li><a href="#" class="text-sm text-gray-400 hover:text-white">Shipping Info</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="mt-12 border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between"> | |
| <p class="text-sm text-gray-400"> | |
| © 2023 LUMIÈRE Skincare. All rights reserved. | |
| </p> | |
| <div class="mt-4 md:mt-0 flex space-x-6"> | |
| <a href="#" class="text-sm text-gray-400 hover:text-white">Privacy Policy</a> | |
| <a href="#" class="text-sm text-gray-400 hover:text-white">Terms of Service</a> | |
| <a href="#" class="text-sm text-gray-400 hover:text-white">Cookie Policy</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| menu.classList.toggle('hidden'); | |
| }); | |
| // FAQ toggle functionality | |
| document.querySelectorAll('.faq-toggle').forEach(button => { | |
| button.addEventListener('click', () => { | |
| const content = button.nextElementSibling; | |
| const icon = button.querySelector('i'); | |
| // Toggle content | |
| content.classList.toggle('hidden'); | |
| // Rotate icon | |
| icon.classList.toggle('rotate-180'); | |
| }); | |
| }); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function(e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| // Close mobile menu if open | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| if (!mobileMenu.classList.contains('hidden')) { | |
| mobileMenu.classList.add('hidden'); | |
| } | |
| // Scroll to target | |
| targetElement.scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| } | |
| }); | |
| }); | |
| // Add glow effect on button hover | |
| document.querySelectorAll('.glow-effect').forEach(button => { | |
| button.addEventListener('mouseenter', () => { | |
| button.querySelector('::after').style.opacity = '1'; | |
| }); | |
| button.addEventListener('mouseleave', () => { | |
| button.querySelector('::after').style.opacity = '0'; | |
| }); | |
| }); | |
| </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=tomimoto5151/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |