| get inspired from next landing page and make it related Minecraft Topic Landing Page : |
|
|
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Exclusive Nike Coupons | Limited Time Offer</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"> |
| <link rel="preconnect" href="https://fonts.googleapis.com"> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet"> |
| <script> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| nike: '#111111', |
| nikeAccent: '#e60023', |
| }, |
| fontFamily: { |
| montserrat: ['Montserrat', 'sans-serif'], |
| poppins: ['Poppins', 'sans-serif'] |
| } |
| } |
| } |
| } |
| </script> |
| <style> |
| .hero-bg { |
| background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80'); |
| background-size: cover; |
| background-position: center; |
| } |
| .coupon-card { |
| transition: all 0.3s ease; |
| transform-style: preserve-3d; |
| } |
| .coupon-card:hover { |
| transform: translateY(-10px) scale(1.02); |
| box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); |
| } |
| .modal { |
| transition: opacity 0.3s ease, transform 0.3s ease; |
| } |
| .modal-content { |
| transform: translateY(20px); |
| transition: transform 0.3s ease; |
| } |
| .modal.show { |
| opacity: 1; |
| pointer-events: auto; |
| } |
| .modal.show .modal-content { |
| transform: translateY(0); |
| } |
| .loader { |
| border-top-color: #e60023; |
| animation: spin 1s linear infinite; |
| } |
| @keyframes spin { |
| 0% { transform: rotate(0deg); } |
| 100% { transform: rotate(360deg); } |
| } |
| .countdown-item { |
| background: linear-gradient(145deg, #1a1a1a, #0f0f0f); |
| box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); |
| } |
| .floating { |
| animation: floating 3s ease-in-out infinite; |
| } |
| @keyframes floating { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-15px); } |
| 100% { transform: translateY(0px); } |
| } |
| </style> |
| </head> |
| <body class="font-poppins bg-gray-50"> |
| <!-- Header --> |
| <header class="bg-nike text-white"> |
| <div class="container mx-auto px-4 py-4 flex justify-between items-center"> |
| <div class="flex items-center"> |
| <div class="w-10 h-10 rounded-full bg-nikeAccent flex items-center justify-center mr-3"> |
| <i class="fas fa-shoe-prints text-white text-xl"></i> |
| </div> |
| <h1 class="text-2xl font-bold font-montserrat">NIKE<span class="text-nikeAccent">COUPONS</span></h1> |
| </div> |
| <div class="hidden md:flex items-center space-x-6"> |
| <a href="#" class="hover:text-nikeAccent transition">Home</a> |
| <a href="#" class="hover:text-nikeAccent transition">How It Works</a> |
| <a href="#" class="hover:text-nikeAccent transition">Testimonials</a> |
| <a href="#" class="hover:text-nikeAccent transition">FAQ</a> |
| </div> |
| <button class="md:hidden text-2xl"> |
| <i class="fas fa-bars"></i> |
| </button> |
| </div> |
| </header> |
|
|
| <!-- Hero Section --> |
| <section class="hero-bg text-white py-20"> |
| <div class="container mx-auto px-4 text-center"> |
| <div class="max-w-3xl mx-auto"> |
| <div class="inline-block mb-4 px-4 py-1 bg-nikeAccent rounded-full text-sm font-semibold"> |
| LIMITED TIME OFFER |
| </div> |
| <h1 class="text-4xl md:text-6xl font-bold font-montserrat mb-6"> |
| UNLOCK EXCLUSIVE <span class="text-nikeAccent">NIKE</span> SAVINGS |
| </h1> |
| <p class="text-xl mb-8 max-w-2xl mx-auto"> |
| Get access to premium discounts on Nike's latest collections. Elevate your style without breaking the bank! |
| </p> |
| |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6 mb-12"> |
| <div class="bg-white text-nike p-4 rounded-lg shadow-lg flex items-center"> |
| <i class="fas fa-tag text-nikeAccent text-2xl mr-3"></i> |
| <div> |
| <div class="font-bold">Up to 70% Off</div> |
| <div class="text-sm">On select items</div> |
| </div> |
| </div> |
| <div class="bg-white text-nike p-4 rounded-lg shadow-lg flex items-center"> |
| <i class="fas fa-shipping-fast text-nikeAccent text-2xl mr-3"></i> |
| <div> |
| <div class="font-bold">Free Shipping</div> |
| <div class="text-sm">On orders over $50</div> |
| </div> |
| </div> |
| </div> |
| |
| <button id="getCouponsBtn" class="bg-nikeAccent hover:bg-red-700 text-white font-bold py-4 px-10 rounded-full text-lg transition transform hover:scale-105 duration-300 shadow-lg"> |
| GET YOUR COUPONS NOW <i class="fas fa-arrow-right ml-2"></i> |
| </button> |
| |
| <div class="mt-10 flex justify-center"> |
| <div class="floating"> |
| <i class="fas fa-chevron-down text-2xl animate-bounce"></i> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| <!-- Benefits Section --> |
| <section class="py-16 bg-white"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-3xl md:text-4xl font-bold text-center font-montserrat mb-16">Why Choose Our Nike Coupons?</h2> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div class="text-center p-8 rounded-xl bg-gray-50 border border-gray-100"> |
| <div class="w-20 h-20 mx-auto bg-nikeAccent rounded-full flex items-center justify-center mb-6"> |
| <i class="fas fa-gem text-white text-3xl"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Exclusive Access</h3> |
| <p class="text-gray-600">Special discounts not available to the general public. Be among the first to save!</p> |
| </div> |
| |
| <div class="text-center p-8 rounded-xl bg-gray-50 border border-gray-100"> |
| <div class="w-20 h-20 mx-auto bg-nikeAccent rounded-full flex items-center justify-center mb-6"> |
| <i class="fas fa-check-circle text-white text-3xl"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Verified & Reliable</h3> |
| <p class="text-gray-600">All coupons are tested and verified to ensure they work at checkout.</p> |
| </div> |
| |
| <div class="text-center p-8 rounded-xl bg-gray-50 border border-gray-100"> |
| <div class="w-20 h-20 mx-auto bg-nikeAccent rounded-full flex items-center justify-center mb-6"> |
| <i class="fas fa-sync-alt text-white text-3xl"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Regular Updates</h3> |
| <p class="text-gray-600">New coupons added weekly so you always have fresh savings opportunities.</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| <!-- Countdown Timer --> |
| <section class="py-12 bg-nike text-white"> |
| <div class="container mx-auto px-4 text-center"> |
| <h2 class="text-2xl md:text-3xl font-bold mb-4">HURRY! OFFER EXPIRES SOON</h2> |
| <div class="flex justify-center space-x-4 mb-8"> |
| <div class="countdown-item w-20 h-20 rounded-lg flex flex-col items-center justify-center"> |
| <div id="days" class="text-2xl font-bold">00</div> |
| <div class="text-sm">DAYS</div> |
| </div> |
| <div class="countdown-item w-20 h-20 rounded-lg flex flex-col items-center justify-center"> |
| <div id="hours" class="text-2xl font-bold">00</div> |
| <div class="text-sm">HOURS</div> |
| </div> |
| <div class="countdown-item w-20 h-20 rounded-lg flex flex-col items-center justify-center"> |
| <div id="minutes" class="text-2xl font-bold">00</div> |
| <div class="text-sm">MINUTES</div> |
| </div> |
| <div class="countdown-item w-20 h-20 rounded-lg flex flex-col items-center justify-center"> |
| <div id="seconds" class="text-2xl font-bold">00</div> |
| <div class="text-sm">SECONDS</div> |
| </div> |
| </div> |
| <button id="countdownBtn" class="bg-nikeAccent hover:bg-red-700 text-white font-bold py-3 px-8 rounded-full transition transform hover:scale-105 duration-300"> |
| CLAIM YOUR DISCOUNT NOW |
| </button> |
| </div> |
| </section> |
|
|
| <!-- Testimonials --> |
| <section class="py-16 bg-gray-50"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-3xl md:text-4xl font-bold text-center font-montserrat mb-16">What Our Users Say</h2> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg: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-nikeAccent flex items-center justify-center text-white font-bold mr-3">AJ</div> |
| <div> |
| <div class="font-bold">Alex Johnson</div> |
| <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">"Saved $45 on my new Air Jordans! These coupons are legit and easy to use. Will definitely come back!"</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-nikeAccent flex items-center justify-center text-white font-bold mr-3">MS</div> |
| <div> |
| <div class="font-bold">Maria Sanchez</div> |
| <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 was skeptical at first, but the coupon code worked perfectly! Got free shipping and 30% off my order."</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-nikeAccent flex items-center justify-center text-white font-bold mr-3">TK</div> |
| <div> |
| <div class="font-bold">Tom Keller</div> |
| <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">"As a Nike collector, I'm always looking for deals. This site has saved me hundreds over the past year!"</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| <!-- FAQ Section --> |
| <section class="py-16 bg-white"> |
| <div class="container mx-auto px-4"> |
| <h2 class="text-3xl md:text-4xl font-bold text-center font-montserrat mb-16">Frequently Asked Questions</h2> |
| |
| <div class="max-w-3xl mx-auto"> |
| <div class="mb-6"> |
| <div class="flex justify-between items-center cursor-pointer border-b border-gray-200 py-4"> |
| <h3 class="text-lg font-semibold">How do I use these coupons?</h3> |
| <i class="fas fa-chevron-down"></i> |
| </div> |
| <p class="mt-3 text-gray-600 hidden">Simply click the "Get Coupons Now" button, complete the quick verification process, and you'll receive your exclusive coupon codes. Copy the code during Nike checkout to apply your discount.</p> |
| </div> |
| |
| <div class="mb-6"> |
| <div class="flex justify-between items-center cursor-pointer border-b border-gray-200 py-4"> |
| <h3 class="text-lg font-semibold">Are these coupons really free?</h3> |
| <i class="fas fa-chevron-down"></i> |
| </div> |
| <p class="mt-3 text-gray-600 hidden">Yes! Our service is completely free. We partner with Nike to bring exclusive savings to our users without any cost.</p> |
| </div> |
| |
| <div class="mb-6"> |
| <div class="flex justify-between items-center cursor-pointer border-b border-gray-200 py-4"> |
| <h3 class="text-lg font-semibold">How often are new coupons added?</h3> |
| <i class="fas fa-chevron-down"></i> |
| </div> |
| <p class="mt-3 text-gray-600 hidden">We update our coupon database weekly with new offers. Special seasonal discounts are added during holidays and major sales events.</p> |
| </div> |
| |
| <div class="mb-6"> |
| <div class="flex justify-between items-center cursor-pointer border-b border-gray-200 py-4"> |
| <h3 class="text-lg font-semibold">Can I use multiple coupons at once?</h3> |
| <i class="fas fa-chevron-down"></i> |
| </div> |
| <p class="mt-3 text-gray-600 hidden">Nike's policy typically allows only one coupon per order. However, we sometimes offer stackable coupons which will be clearly marked.</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| <!-- Final CTA --> |
| <section class="py-20 bg-gradient-to-r from-nike to-gray-900 text-white"> |
| <div class="container mx-auto px-4 text-center"> |
| <h2 class="text-3xl md:text-4xl font-bold font-montserrat mb-6">Ready to Elevate Your Nike Experience?</h2> |
| <p class="text-xl max-w-2xl mx-auto mb-10">Join thousands of satisfied customers who save big on their favorite Nike products every day.</p> |
| <button id="finalCtaBtn" class="bg-nikeAccent hover:bg-red-700 text-white font-bold py-4 px-12 rounded-full text-lg transition transform hover:scale-105 duration-300 shadow-lg"> |
| UNLOCK YOUR SAVINGS NOW |
| </button> |
| </div> |
| </section> |
|
|
| <!-- Footer --> |
| <footer class="bg-nike text-gray-300 py-10"> |
| <div class="container mx-auto px-4"> |
| <div class="flex flex-col md:flex-row justify-between items-center"> |
| <div class="mb-6 md:mb-0"> |
| <div class="flex items-center"> |
| <div class="w-8 h-8 rounded-full bg-nikeAccent flex items-center justify-center mr-2"> |
| <i class="fas fa-shoe-prints text-white"></i> |
| </div> |
| <h2 class="text-xl font-bold font-montserrat">NIKE<span class="text-nikeAccent">COUPONS</span></h2> |
| </div> |
| <p class="mt-2 text-sm max-w-xs">Your trusted source for exclusive Nike discounts and promotions.</p> |
| </div> |
| |
| <div class="flex space-x-6"> |
| <a href="#" class="hover:text-white"><i class="fab fa-facebook-f"></i></a> |
| <a href="#" class="hover:text-white"><i class="fab fa-twitter"></i></a> |
| <a href="#" class="hover:text-white"><i class="fab fa-instagram"></i></a> |
| <a href="#" class="hover:text-white"><i class="fab fa-pinterest"></i></a> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-800 mt-8 pt-8 text-center text-sm"> |
| <p>© 2023 NikeCoupons. This is an independent service and is not affiliated with Nike. All trademarks are property of their respective owners.</p> |
| <div class="mt-4"> |
| <a href="#" class="mx-2 hover:text-white">Privacy Policy</a> |
| <a href="#" class="mx-2 hover:text-white">Terms of Service</a> |
| <a href="#" class="mx-2 hover:text-white">Contact Us</a> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| <!-- Content Locker Modal --> |
| <div id="contentLockerModal" class="modal fixed inset-0 bg-black bg-opacity-75 flex items-center justify-center z-50 opacity-0 pointer-events-none"> |
| <div class="modal-content bg-white rounded-xl w-full max-w-md mx-4 p-6 relative"> |
| <button id="closeModal" class="absolute top-4 right-4 text-gray-500 hover:text-gray-700"> |
| <i class="fas fa-times"></i> |
| </button> |
| |
| <div class="text-center"> |
| <div class="w-16 h-16 mx-auto bg-nikeAccent rounded-full flex items-center justify-center mb-6"> |
| <i class="fas fa-lock text-white text-2xl"></i> |
| </div> |
| <h3 class="text-2xl font-bold font-montserrat mb-4">Unlock Your Nike Coupons</h3> |
| <p class="text-gray-600 mb-6">Complete this quick step to access your exclusive Nike discounts</p> |
| |
| <div id="step1" class="step"> |
| <div class="bg-gray-100 p-4 rounded-lg mb-6"> |
| <div class="flex items-center mb-3"> |
| <div class="w-8 h-8 rounded-full bg-nikeAccent flex items-center justify-center text-white mr-3"> |
| <i class="fas fa-1"></i> |
| </div> |
| <h4 class="font-semibold">Verify Your Email</h4> |
| </div> |
| <p class="text-sm text-gray-600">Enter your email address to receive your coupon codes</p> |
| </div> |
| |
| <form id="emailForm" class="mb-4"> |
| <div class="mb-4"> |
| <input type="email" id="userEmail" placeholder="Enter your email address" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-nikeAccent"> |
| </div> |
| <button type="submit" class="w-full bg-nikeAccent hover:bg-red-700 text-white font-bold py-3 px-4 rounded-lg transition"> |
| VERIFY EMAIL |
| </button> |
| </form> |
| |
| <p class="text-xs text-gray-500">We respect your privacy. Your information is secure and will not be shared.</p> |
| </div> |
| |
| <div id="step2" class="step hidden"> |
| <div class="bg-gray-100 p-4 rounded-lg mb-6"> |
| <div class="flex items-center mb-3"> |
| <div class="w-8 h-8 rounded-full bg-nikeAccent flex items-center justify-center text-white mr-3"> |
| <i class="fas fa-2"></i> |
| </div> |
| <h4 class="font-semibold">Complete Verification</h4> |
| </div> |
| <p class="text-sm text-gray-600">Check your email for the verification code</p> |
| </div> |
| |
| <form id="verificationForm" class="mb-4"> |
| <div class="mb-4"> |
| <input type="text" id="verificationCode" placeholder="Enter verification code" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-nikeAccent"> |
| </div> |
| <button type="submit" class="w-full bg-nikeAccent hover:bg-red-700 text-white font-bold py-3 px-4 rounded-lg transition"> |
| SUBMIT CODE |
| </button> |
| </form> |
| |
| <p class="text-xs text-gray-500">Didn't receive the code? <a href="#" class="text-nikeAccent">Resend</a></p> |
| </div> |
| |
| <div id="step3" class="step hidden"> |
| <div class="flex justify-center mb-6"> |
| <div class="loader ease-linear rounded-full border-4 border-t-4 border-gray-200 h-12 w-12"></div> |
| </div> |
| <h4 class="font-bold text-lg mb-2">Unlocking Your Coupons...</h4> |
| <p class="text-gray-600 mb-6">Please wait while we prepare your exclusive Nike discounts</p> |
| </div> |
| |
| <div id="step4" class="step hidden"> |
| <div class="w-16 h-16 mx-auto bg-green-500 rounded-full flex items-center justify-center mb-6"> |
| <i class="fas fa-check text-white text-2xl"></i> |
| </div> |
| <h4 class="font-bold text-2xl mb-4 text-nikeAccent">Success!</h4> |
| <p class="text-gray-600 mb-6">Your coupons are ready! Redirecting to your exclusive offers...</p> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <script> |
| // Countdown Timer |
| function updateCountdown() { |
| const now = new Date(); |
| const targetDate = new Date(); |
| targetDate.setDate(now.getDate() + 3); |
| |
| const diff = targetDate - now; |
| |
| const days = Math.floor(diff / (1000 * 60 * 60 * 24)); |
| const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); |
| const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60)); |
| const seconds = Math.floor((diff % (1000 * 60)) / 1000); |
| |
| document.getElementById('days').textContent = days.toString().padStart(2, '0'); |
| document.getElementById('hours').textContent = hours.toString().padStart(2, '0'); |
| document.getElementById('minutes').textContent = minutes.toString().padStart(2, '0'); |
| document.getElementById('seconds').textContent = seconds.toString().padStart(2, '0'); |
| } |
| |
| setInterval(updateCountdown, 1000); |
| updateCountdown(); |
| |
| // Modal functionality |
| const modal = document.getElementById('contentLockerModal'); |
| const closeModal = document.getElementById('closeModal'); |
| const getCouponsBtn = document.getElementById('getCouponsBtn'); |
| const countdownBtn = document.getElementById('countdownBtn'); |
| const finalCtaBtn = document.getElementById('finalCtaBtn'); |
| const emailForm = document.getElementById('emailForm'); |
| const verificationForm = document.getElementById('verificationForm'); |
| |
| function openModal() { |
| modal.classList.remove('opacity-0', 'pointer-events-none'); |
| modal.classList.add('show'); |
| document.body.style.overflow = 'hidden'; |
| } |
| |
| function closeModalFunc() { |
| modal.classList.remove('show'); |
| modal.classList.add('opacity-0', 'pointer-events-none'); |
| document.body.style.overflow = 'auto'; |
| // Reset to step 1 |
| document.getElementById('step1').classList.remove('hidden'); |
| document.getElementById('step2').classList.add('hidden'); |
| document.getElementById('step3').classList.add('hidden'); |
| document.getElementById('step4').classList.add('hidden'); |
| } |
| |
| getCouponsBtn.addEventListener('click', openModal); |
| countdownBtn.addEventListener('click', openModal); |
| finalCtaBtn.addEventListener('click', openModal); |
| closeModal.addEventListener('click', closeModalFunc); |
| |
| // Close modal when clicking outside |
| modal.addEventListener('click', (e) => { |
| if (e.target === modal) { |
| closeModalFunc(); |
| } |
| }); |
| |
| // Form submission |
| emailForm.addEventListener('submit', (e) => { |
| e.preventDefault(); |
| const email = document.getElementById('userEmail').value; |
| if (email && validateEmail(email)) { |
| document.getElementById('step1').classList.add('hidden'); |
| document.getElementById('step2').classList.remove('hidden'); |
| } else { |
| alert('Please enter a valid email address'); |
| } |
| }); |
| |
| verificationForm.addEventListener('submit', (e) => { |
| e.preventDefault(); |
| const code = document.getElementById('verificationCode').value; |
| if (code) { |
| document.getElementById('step2').classList.add('hidden'); |
| document.getElementById('step3').classList.remove('hidden'); |
| |
| // Simulate processing |
| setTimeout(() => { |
| document.getElementById('step3').classList.add('hidden'); |
| document.getElementById('step4').classList.remove('hidden'); |
| |
| // Redirect after a delay |
| setTimeout(() => { |
| // Replace with your actual CPA offer URL |
| window.location.href = 'https://example.com/cpa-offer'; |
| }, 3000); |
| }, 2000); |
| } else { |
| alert('Please enter the verification code'); |
| } |
| }); |
| |
| // Email validation |
| function validateEmail(email) { |
| const re = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; |
| return re.test(String(email).toLowerCase()); |
| } |
| |
| // FAQ accordion |
| const faqHeaders = document.querySelectorAll('.cursor-pointer'); |
| faqHeaders.forEach(header => { |
| header.addEventListener('click', () => { |
| const content = header.nextElementSibling; |
| content.classList.toggle('hidden'); |
| const icon = header.querySelector('i'); |
| icon.classList.toggle('fa-chevron-down'); |
| icon.classList.toggle('fa-chevron-up'); |
| }); |
| }); |
| </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=Saad4web/nike" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |
| good add a showcase of tool by ai or app grid |
| make it on top and also change text of all cta buttons |