|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Interactive Modern UI</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 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
|
} |
|
.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 bg-gray-50"> |
|
|
|
<nav class="bg-white shadow-sm fixed w-full z-10"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="flex justify-between h-16"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 flex items-center"> |
|
<i class="fas fa-cube text-purple-600 text-2xl mr-2"></i> |
|
<span class="text-xl font-bold text-gray-800">NexusUI</span> |
|
</div> |
|
</div> |
|
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> |
|
<a href="#" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium">Home</a> |
|
<a href="#" class="text-gray-500 hover:text-purple-600 px-3 py-2 text-sm font-medium">Features</a> |
|
<a href="#" class="text-gray-500 hover:text-purple-600 px-3 py-2 text-sm font-medium">Pricing</a> |
|
<a href="#" class="text-gray-500 hover:text-purple-600 px-3 py-2 text-sm font-medium">About</a> |
|
<button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300"> |
|
Get Started |
|
</button> |
|
</div> |
|
<div class="-mr-2 flex items-center md:hidden"> |
|
<button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 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-gray-900 hover:text-purple-600 hover:bg-gray-50">Home</a> |
|
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-500 hover:text-purple-600 hover:bg-gray-50">Features</a> |
|
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-500 hover:text-purple-600 hover:bg-gray-50">Pricing</a> |
|
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-500 hover:text-purple-600 hover:bg-gray-50">About</a> |
|
<button class="w-full text-left block 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 pt-32 pb-20 relative overflow-hidden"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center"> |
|
<div class="mt-10 mx-auto max-w-md sm:max-w-lg lg:mt-0 lg:mx-0"> |
|
<h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl sm:leading-tight"> |
|
Build amazing digital experiences |
|
</h1> |
|
<p class="mt-3 text-xl text-purple-100 sm:mt-5"> |
|
Our platform helps you create beautiful interfaces that users love with minimal effort. |
|
</p> |
|
<div class="mt-10 sm:flex sm:justify-start"> |
|
<div class="rounded-md shadow"> |
|
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-purple-700 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10"> |
|
Start free trial |
|
</a> |
|
</div> |
|
<div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3"> |
|
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-500 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10"> |
|
Watch demo |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="mt-12 relative lg:mt-0"> |
|
<div class="relative mx-auto w-full rounded-lg shadow-lg overflow-hidden floating"> |
|
<div class="relative w-full h-96 bg-white rounded-lg flex items-center justify-center"> |
|
<div class="absolute inset-0 bg-gradient-to-br from-purple-100 to-white opacity-60"></div> |
|
<div class="relative z-10 p-8 text-center"> |
|
<i class="fas fa-mobile-alt text-6xl text-purple-600 mb-4"></i> |
|
<h3 class="text-lg font-medium text-gray-900">Interactive Preview</h3> |
|
<p class="mt-2 text-gray-600">Experience our UI components in action</p> |
|
<button class="mt-4 bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300"> |
|
Try It Now |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
</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 modern UIs |
|
</p> |
|
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> |
|
Our platform provides everything you need to create stunning user interfaces with ease. |
|
</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 rounded-lg shadow-md overflow-hidden border border-gray-100"> |
|
<div class="p-6"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 bg-purple-100 rounded-md p-3"> |
|
<i class="fas fa-palette text-purple-600 text-xl"></i> |
|
</div> |
|
<div class="ml-5"> |
|
<h3 class="text-lg font-medium text-gray-900">Customizable Themes</h3> |
|
</div> |
|
</div> |
|
<div class="mt-4"> |
|
<p class="text-base text-gray-500"> |
|
Easily customize colors, fonts, and styles to match your brand identity with our theme editor. |
|
</p> |
|
</div> |
|
<div class="mt-6"> |
|
<button class="text-purple-600 hover:text-purple-700 font-medium text-sm flex items-center"> |
|
Learn more <i class="fas fa-chevron-right ml-1 text-xs"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="card-hover-effect bg-white rounded-lg shadow-md overflow-hidden border border-gray-100"> |
|
<div class="p-6"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 bg-purple-100 rounded-md p-3"> |
|
<i class="fas fa-mobile-alt text-purple-600 text-xl"></i> |
|
</div> |
|
<div class="ml-5"> |
|
<h3 class="text-lg font-medium text-gray-900">Responsive Design</h3> |
|
</div> |
|
</div> |
|
<div class="mt-4"> |
|
<p class="text-base text-gray-500"> |
|
All components automatically adapt to any screen size, from mobile to desktop. |
|
</p> |
|
</div> |
|
<div class="mt-6"> |
|
<button class="text-purple-600 hover:text-purple-700 font-medium text-sm flex items-center"> |
|
Learn more <i class="fas fa-chevron-right ml-1 text-xs"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="card-hover-effect bg-white rounded-lg shadow-md overflow-hidden border border-gray-100"> |
|
<div class="p-6"> |
|
<div class="flex items-center"> |
|
<div class="flex-shrink-0 bg-purple-100 rounded-md p-3"> |
|
<i class="fas fa-bolt text-purple-600 text-xl"></i> |
|
</div> |
|
<div class="ml-5"> |
|
<h3 class="text-lg font-medium text-gray-900">Fast Performance</h3> |
|
</div> |
|
</div> |
|
<div class="mt-4"> |
|
<p class="text-base text-gray-500"> |
|
Optimized components ensure your application loads quickly and runs smoothly. |
|
</p> |
|
</div> |
|
<div class="mt-6"> |
|
<button class="text-purple-600 hover:text-purple-700 font-medium text-sm flex items-center"> |
|
Learn more <i class="fas fa-chevron-right ml-1 text-xs"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</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">10,000+</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">500+</div> |
|
<div class="mt-2 text-sm font-medium text-gray-500">UI Components</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> |
|
</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 mb-12"> |
|
<h2 class="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"> |
|
What our customers say |
|
</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3"> |
|
|
|
<div class="card-hover-effect bg-gray-50 p-6 rounded-lg"> |
|
<div class="flex items-center mb-4"> |
|
<img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah Johnson"> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-gray-900">Sarah Johnson</h4> |
|
<p class="text-purple-600">Product Designer</p> |
|
</div> |
|
</div> |
|
<p class="text-gray-600 italic"> |
|
"NexusUI has completely transformed our design workflow. We can now prototype interfaces in hours instead of days." |
|
</p> |
|
<div class="mt-4 flex"> |
|
<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 class="card-hover-effect bg-gray-50 p-6 rounded-lg"> |
|
<div class="flex items-center mb-4"> |
|
<img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/men/45.jpg" alt="Michael Chen"> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-gray-900">Michael Chen</h4> |
|
<p class="text-purple-600">Frontend Developer</p> |
|
</div> |
|
</div> |
|
<p class="text-gray-600 italic"> |
|
"The component library is incredibly well-documented and easy to integrate with our React application." |
|
</p> |
|
<div class="mt-4 flex"> |
|
<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-half-alt text-yellow-400"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="card-hover-effect bg-gray-50 p-6 rounded-lg"> |
|
<div class="flex items-center mb-4"> |
|
<img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma Rodriguez"> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-gray-900">Emma Rodriguez</h4> |
|
<p class="text-purple-600">UX Lead</p> |
|
</div> |
|
</div> |
|
<p class="text-gray-600 italic"> |
|
"Our team's productivity has increased by 40% since we started using NexusUI for all our projects." |
|
</p> |
|
<div class="mt-4 flex"> |
|
<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> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="gradient-bg py-16 relative overflow-hidden"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
|
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl"> |
|
Ready to dive in? |
|
</h2> |
|
<p class="mt-4 max-w-2xl text-xl text-purple-100 mx-auto"> |
|
Start your free trial today and experience the power of NexusUI. |
|
</p> |
|
<div class="mt-8 flex justify-center"> |
|
<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-700 bg-white hover:bg-gray-50"> |
|
Get started |
|
</a> |
|
</div> |
|
<div class="ml-3 inline-flex"> |
|
<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-500 bg-opacity-60 hover:bg-opacity-70"> |
|
Learn more |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="wave-shape rotate-180"> |
|
<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> |
|
|
|
|
|
<footer class="bg-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="text-sm font-semibold text-gray-900 tracking-wider uppercase">Product</h3> |
|
<ul class="mt-4 space-y-2"> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">Features</a></li> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">Pricing</a></li> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">Documentation</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase">Company</h3> |
|
<ul class="mt-4 space-y-2"> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">About</a></li> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">Blog</a></li> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">Careers</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase">Legal</h3> |
|
<ul class="mt-4 space-y-2"> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">Privacy</a></li> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">Terms</a></li> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">Cookie Policy</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h3 class="text-sm font-semibold text-gray-900 tracking-wider uppercase">Connect</h3> |
|
<ul class="mt-4 space-y-2"> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">Twitter</a></li> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">GitHub</a></li> |
|
<li><a href="#" class="text-gray-600 hover:text-purple-600">LinkedIn</a></li> |
|
</ul> |
|
</div> |
|
</div> |
|
<div class="mt-12 border-t border-gray-200 pt-8 flex flex-col md:flex-row justify-between"> |
|
<p class="text-gray-500 text-sm"> |
|
© 2023 NexusUI. All rights reserved. |
|
</p> |
|
<div class="mt-4 md:mt-0 flex space-x-6"> |
|
<a href="#" class="text-gray-400 hover:text-purple-600"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-purple-600"> |
|
<i class="fab fa-facebook-f"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-purple-600"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-purple-600"> |
|
<i class="fab fa-linkedin-in"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
|
|
<script> |
|
|
|
document.getElementById('mobile-menu-button').addEventListener('click', function() { |
|
const menu = document.getElementById('mobile-menu'); |
|
if (menu.classList.contains('hidden')) { |
|
menu.classList.remove('hidden'); |
|
} else { |
|
menu.classList.add('hidden'); |
|
} |
|
}); |
|
|
|
|
|
const stats = document.querySelectorAll('.text-4xl'); |
|
const observer = new IntersectionObserver((entries) => { |
|
entries.forEach(entry => { |
|
if (entry.isIntersecting) { |
|
animateValue(entry.target, 0, parseInt(entry.target.textContent), 1000); |
|
observer.unobserve(entry.target); |
|
} |
|
}); |
|
}, {threshold: 0.5}); |
|
|
|
stats.forEach(stat => { |
|
observer.observe(stat); |
|
}); |
|
|
|
function animateValue(obj, start, end, duration) { |
|
let startTimestamp = null; |
|
const step = (timestamp) => { |
|
if (!startTimestamp) startTimestamp = timestamp; |
|
const progress = Math.min((timestamp - startTimestamp) / duration, 1); |
|
obj.textContent = Math.floor(progress * (end - start) + start); |
|
if (progress < 1) { |
|
window.requestAnimationFrame(step); |
|
} |
|
}; |
|
window.requestAnimationFrame(step); |
|
} |
|
|
|
|
|
const cards = document.querySelectorAll('.card-hover-effect'); |
|
cards.forEach(card => { |
|
card.addEventListener('mouseenter', () => { |
|
card.style.transition = 'all 0.3s ease'; |
|
}); |
|
}); |
|
</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=miiann/nexusui" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |