| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Interactive UI Showcase</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> |
| |
| .gradient-bg { |
| background: linear-gradient(135deg, #6e8efb, #a777e3); |
| } |
| .card-hover-effect { |
| transition: all 0.3s ease; |
| } |
| .card-hover-effect:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 10px 20px rgba(0,0,0,0.1); |
| } |
| .wave-shape { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 100%; |
| overflow: hidden; |
| line-height: 0; |
| } |
| .wave-shape svg { |
| position: relative; |
| display: block; |
| width: calc(100% + 1.3px); |
| height: 150px; |
| } |
| .wave-shape .shape-fill { |
| fill: #FFFFFF; |
| } |
| @keyframes float { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-10px); } |
| 100% { transform: translateY(0px); } |
| } |
| .floating { |
| animation: float 3s ease-in-out infinite; |
| } |
| </style> |
| </head> |
| <body class="font-sans antialiased text-gray-800"> |
| |
| <nav class="bg-white shadow-lg sticky top-0 z-50"> |
| <div class="max-w-6xl mx-auto px-4"> |
| <div class="flex justify-between items-center h-16"> |
| <div class="flex items-center space-x-4"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-cube text-purple-600 text-2xl"></i> |
| </div> |
| <div class="hidden md:block"> |
| <div class="ml-10 flex items-baseline space-x-4"> |
| <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-purple-600 bg-purple-100">Home</a> |
| <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-purple-600">Features</a> |
| <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-purple-600">Pricing</a> |
| <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-purple-600">About</a> |
| </div> |
| </div> |
| </div> |
| <div class="hidden md:block"> |
| <div class="ml-4 flex items-center md:ml-6"> |
| <button class="px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500"> |
| Get Started |
| </button> |
| </div> |
| </div> |
| <div class="md:hidden flex items-center"> |
| <button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-600 hover:text-purple-600 focus:outline-none"> |
| <i class="fas fa-bars"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div id="mobile-menu" class="hidden md:hidden"> |
| <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
| <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-purple-600 bg-purple-100">Home</a> |
| <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-purple-600">Features</a> |
| <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-purple-600">Pricing</a> |
| <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-600 hover:text-purple-600">About</a> |
| <button class="block w-full text-left px-3 py-2 rounded-md text-base font-medium text-white bg-purple-600 hover:bg-purple-700"> |
| Get Started |
| </button> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <div class="gradient-bg text-white relative overflow-hidden"> |
| <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8 relative z-10"> |
| <div class="text-center"> |
| <h1 class="text-4xl md:text-6xl font-extrabold tracking-tight"> |
| <span class="block">Build Amazing</span> |
| <span class="block">Digital Experiences</span> |
| </h1> |
| <p class="mt-6 max-w-lg mx-auto text-xl"> |
| Our platform helps you create beautiful, responsive websites with ease. |
| </p> |
| <div class="mt-10 flex justify-center space-x-4"> |
| <button class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-purple-600 bg-white hover:bg-gray-100 md:py-4 md:text-lg md:px-10 transition duration-300 transform hover:scale-105"> |
| Get Started |
| </button> |
| <button class="px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-700 bg-opacity-60 hover:bg-opacity-80 md:py-4 md:text-lg md:px-10 transition duration-300 transform hover:scale-105"> |
| Learn More |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| <div class="wave-shape"> |
| <svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"> |
| <path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="py-12 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="lg:text-center"> |
| <h2 class="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"> |
| A better way to build |
| </p> |
| <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> |
| Everything you need to create amazing digital experiences. |
| </p> |
| </div> |
|
|
| <div class="mt-10"> |
| <div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3"> |
| |
| <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4"> |
| <i class="fas fa-bolt text-xl"></i> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Lightning Fast</h3> |
| <p class="text-gray-500"> |
| Optimized for performance with minimal overhead and maximum speed. |
| </p> |
| </div> |
|
|
| |
| <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4"> |
| <i class="fas fa-mobile-alt text-xl"></i> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Fully Responsive</h3> |
| <p class="text-gray-500"> |
| Looks great on any device, from phones to large desktop screens. |
| </p> |
| </div> |
|
|
| |
| <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4"> |
| <i class="fas fa-palette text-xl"></i> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Customizable</h3> |
| <p class="text-gray-500"> |
| Easily customize colors, fonts, and layouts to match your brand. |
| </p> |
| </div> |
|
|
| |
| <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4"> |
| <i class="fas fa-code text-xl"></i> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Clean Code</h3> |
| <p class="text-gray-500"> |
| Well-structured, semantic code that's easy to understand and maintain. |
| </p> |
| </div> |
|
|
| |
| <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4"> |
| <i class="fas fa-shield-alt text-xl"></i> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Secure</h3> |
| <p class="text-gray-500"> |
| Built with security in mind to protect your data and your users. |
| </p> |
| </div> |
|
|
| |
| <div class="card-hover-effect bg-white p-6 rounded-lg shadow-md"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4"> |
| <i class="fas fa-life-ring text-xl"></i> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Support</h3> |
| <p class="text-gray-500"> |
| Dedicated support team ready to help you with any questions. |
| </p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-gray-50 py-12"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="grid grid-cols-2 gap-8 md:grid-cols-4"> |
| <div class="text-center"> |
| <div class="text-4xl font-extrabold text-purple-600">10K+</div> |
| <div class="mt-2 text-sm font-medium text-gray-500">Happy Customers</div> |
| </div> |
| <div class="text-center"> |
| <div class="text-4xl font-extrabold text-purple-600">24/7</div> |
| <div class="mt-2 text-sm font-medium text-gray-500">Support</div> |
| </div> |
| <div class="text-center"> |
| <div class="text-4xl font-extrabold text-purple-600">99.9%</div> |
| <div class="mt-2 text-sm font-medium text-gray-500">Uptime</div> |
| </div> |
| <div class="text-center"> |
| <div class="text-4xl font-extrabold text-purple-600">5M+</div> |
| <div class="mt-2 text-sm font-medium text-gray-500">Downloads</div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-purple-700"> |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between"> |
| <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl"> |
| <span class="block">Ready to dive in?</span> |
| <span class="block text-purple-200">Start your free trial today.</span> |
| </h2> |
| <div class="mt-8 flex lg:mt-0 lg:flex-shrink-0"> |
| <div class="inline-flex rounded-md shadow"> |
| <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-purple-600 bg-white hover:bg-purple-50"> |
| Get started |
| </a> |
| </div> |
| <div class="ml-3 inline-flex rounded-md shadow"> |
| <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-600 bg-opacity-60 hover:bg-opacity-70"> |
| Learn more |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <footer class="bg-gray-800"> |
| <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="text-white text-sm font-semibold tracking-wider uppercase mb-4">Product</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white">Features</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Releases</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-white text-sm font-semibold tracking-wider uppercase mb-4">Company</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white">About</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-white text-sm font-semibold tracking-wider uppercase mb-4">Legal</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white">Privacy</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Terms</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">GDPR</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-white text-sm font-semibold tracking-wider uppercase mb-4">Connect</h3> |
| <div class="flex space-x-4"> |
| <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-facebook-f"></i> |
| </a> |
| <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-github"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-linkedin-in"></i> |
| </a> |
| </div> |
| <div class="mt-6"> |
| <p class="text-gray-400 text-sm"> |
| Subscribe to our newsletter |
| </p> |
| <div class="mt-2 flex"> |
| <input type="email" placeholder="Your email" class="px-3 py-2 bg-gray-700 text-white rounded-l-md focus:outline-none focus:ring-2 focus:ring-purple-500 w-full"> |
| <button class="px-4 py-2 bg-purple-600 text-white rounded-r-md hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500"> |
| <i class="fas fa-paper-plane"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| <div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between"> |
| <p class="text-gray-400 text-sm"> |
| © 2023 Your Company. All rights reserved. |
| </p> |
| <div class="mt-4 md:mt-0 flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a> |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a> |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Cookie Policy</a> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| |
| <div class="fixed bottom-6 right-6 z-50"> |
| <button id="chat-button" class="floating h-14 w-14 rounded-full bg-purple-600 text-white shadow-lg flex items-center justify-center hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500 focus:ring-offset-2"> |
| <i class="fas fa-comment-dots text-xl"></i> |
| </button> |
| </div> |
|
|
| |
| <div id="chat-widget" class="hidden fixed bottom-20 right-6 w-80 bg-white rounded-lg shadow-xl z-50 overflow-hidden"> |
| <div class="bg-purple-600 text-white px-4 py-3 flex justify-between items-center"> |
| <h3 class="font-medium">Chat Support</h3> |
| <button id="close-chat" class="text-white hover:text-purple-200 focus:outline-none"> |
| <i class="fas fa-times"></i> |
| </button> |
| </div> |
| <div class="p-4 h-64 overflow-y-auto"> |
| <div class="mb-4"> |
| <div class="bg-gray-100 rounded-lg p-3 max-w-xs"> |
| <p class="text-sm">Hello! How can I help you today?</p> |
| </div> |
| </div> |
| </div> |
| <div class="border-t border-gray-200 p-3"> |
| <div class="flex"> |
| <input type="text" placeholder="Type your message..." class="flex-1 px-3 py-2 border border-gray-300 rounded-l-md focus:outline-none focus:ring-1 focus:ring-purple-500"> |
| <button class="px-4 py-2 bg-purple-600 text-white rounded-r-md hover:bg-purple-700 focus:outline-none focus:ring-1 focus:ring-purple-500"> |
| <i class="fas fa-paper-plane"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <button id="back-to-top" class="hidden fixed bottom-6 left-6 h-12 w-12 rounded-full bg-gray-800 text-white shadow-lg flex items-center justify-center hover:bg-gray-700 focus:outline-none focus:ring-2 focus:ring-gray-500 focus:ring-offset-2 z-50"> |
| <i class="fas fa-arrow-up"></i> |
| </button> |
|
|
| <script> |
| |
| const mobileMenuButton = document.getElementById('mobile-menu-button'); |
| const mobileMenu = document.getElementById('mobile-menu'); |
| |
| mobileMenuButton.addEventListener('click', () => { |
| mobileMenu.classList.toggle('hidden'); |
| }); |
| |
| |
| const chatButton = document.getElementById('chat-button'); |
| const chatWidget = document.getElementById('chat-widget'); |
| const closeChat = document.getElementById('close-chat'); |
| |
| chatButton.addEventListener('click', () => { |
| chatWidget.classList.toggle('hidden'); |
| }); |
| |
| closeChat.addEventListener('click', () => { |
| chatWidget.classList.add('hidden'); |
| }); |
| |
| |
| const backToTopButton = document.getElementById('back-to-top'); |
| |
| window.addEventListener('scroll', () => { |
| if (window.pageYOffset > 300) { |
| backToTopButton.classList.remove('hidden'); |
| } else { |
| backToTopButton.classList.add('hidden'); |
| } |
| }); |
| |
| backToTopButton.addEventListener('click', () => { |
| window.scrollTo({ top: 0, behavior: 'smooth' }); |
| }); |
| |
| |
| const cards = document.querySelectorAll('.card-hover-effect'); |
| |
| const animateOnScroll = () => { |
| cards.forEach((card, index) => { |
| const cardPosition = card.getBoundingClientRect().top; |
| const screenPosition = window.innerHeight / 1.3; |
| |
| if (cardPosition < screenPosition) { |
| setTimeout(() => { |
| card.style.opacity = '1'; |
| card.style.transform = 'translateY(0)'; |
| }, index * 100); |
| } |
| }); |
| }; |
| |
| |
| cards.forEach(card => { |
| card.style.opacity = '0'; |
| card.style.transform = 'translateY(20px)'; |
| card.style.transition = 'opacity 0.5s ease, transform 0.5s ease'; |
| }); |
| |
| window.addEventListener('scroll', animateOnScroll); |
| window.addEventListener('load', animateOnScroll); |
| </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=i4yush/heyy" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |