| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Digital Horizon Explorer</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> |
| <style> |
| .hero-gradient { |
| background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(30,41,59,0.95) 100%); |
| } |
| .card-hover { |
| transition: all 0.3s ease; |
| } |
| .card-hover: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); |
| } |
| .glow { |
| animation: glow 2s infinite alternate; |
| } |
| @keyframes glow { |
| from { |
| box-shadow: 0 0 5px rgba(99, 102, 241, 0.5); |
| } |
| to { |
| box-shadow: 0 0 20px rgba(99, 102, 241, 0.8); |
| } |
| } |
| </style> |
| </head> |
| <body class="bg-slate-50 text-slate-800"> |
| |
| <div id="vanta-bg" class="fixed top-0 left-0 w-full h-full -z-10"></div> |
|
|
| |
| <nav class="bg-white/80 backdrop-blur-md shadow-sm fixed w-full z-50"> |
| <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 data-feather="compass" class="text-indigo-600 h-6 w-6"></i> |
| <span class="ml-2 font-bold text-xl bg-clip-text text-transparent bg-gradient-to-r from-indigo-600 to-purple-600">DigitalHorizon</span> |
| </div> |
| </div> |
| <div class="hidden md:flex items-center space-x-8"> |
| <a href="#" class="text-slate-700 hover:text-indigo-600 font-medium transition">Home</a> |
| <a href="#" class="text-slate-700 hover:text-indigo-600 font-medium transition">Features</a> |
| <a href="#" class="text-slate-700 hover:text-indigo-600 font-medium transition">Pricing</a> |
| <a href="#" class="text-slate-700 hover:text-indigo-600 font-medium transition">About</a> |
| <button class="bg-indigo-600 text-white px-4 py-2 rounded-lg hover:bg-indigo-700 transition font-medium"> |
| Get Started |
| </button> |
| </div> |
| <div class="md:hidden flex items-center"> |
| <button id="menu-btn" class="text-slate-700 hover:text-indigo-600"> |
| <i data-feather="menu"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <div id="mobile-menu" class="hidden md:hidden fixed inset-0 bg-white/90 backdrop-blur-md z-40 pt-16"> |
| <div class="px-4 py-8 space-y-6"> |
| <a href="#" class="block text-slate-700 hover:text-indigo-600 font-medium text-lg">Home</a> |
| <a href="#" class="block text-slate-700 hover:text-indigo-600 font-medium text-lg">Features</a> |
| <a href="#" class="block text-slate-700 hover:text-indigo-600 font-medium text-lg">Pricing</a> |
| <a href="#" class="block text-slate-700 hover:text-indigo-600 font-medium text-lg">About</a> |
| <button class="w-full bg-indigo-600 text-white px-4 py-3 rounded-lg hover:bg-indigo-700 transition font-medium"> |
| Get Started |
| </button> |
| </div> |
| </div> |
|
|
| |
| <section class="hero-gradient min-h-screen flex items-center pt-16 pb-24"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center"> |
| <h1 class="text-4xl md:text-6xl font-bold text-white mb-6"> |
| Explore The <span class="text-indigo-400">Digital Horizon</span> |
| </h1> |
| <p class="text-xl md:text-2xl text-slate-300 max-w-3xl mx-auto mb-10"> |
| Discover cutting-edge solutions that transform your digital experience with our innovative platform. |
| </p> |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-8 py-4 rounded-lg font-bold text-lg transition transform hover:scale-105 glow"> |
| Start Exploring |
| <i data-feather="arrow-right" class="inline ml-2"></i> |
| </button> |
| <button class="bg-white/10 hover:bg-white/20 text-white px-8 py-4 rounded-lg font-bold text-lg transition border border-white/20 backdrop-blur-sm"> |
| Learn More |
| </button> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-slate-800 mb-4"> |
| Powerful Features |
| </h2> |
| <p class="text-lg text-slate-600 max-w-2xl mx-auto"> |
| Our platform is packed with innovative tools to help you succeed in the digital world. |
| </p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="bg-slate-50 rounded-xl p-8 card-hover"> |
| <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="zap" class="text-indigo-600 w-6 h-6"></i> |
| </div> |
| <h3 class="text-xl font-bold text-slate-800 mb-3">Lightning Fast</h3> |
| <p class="text-slate-600"> |
| Experience unparalleled speed with our optimized infrastructure that delivers content in milliseconds. |
| </p> |
| </div> |
| |
| |
| <div class="bg-slate-50 rounded-xl p-8 card-hover"> |
| <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="shield" class="text-indigo-600 w-6 h-6"></i> |
| </div> |
| <h3 class="text-xl font-bold text-slate-800 mb-3">Enterprise Security</h3> |
| <p class="text-slate-600"> |
| Your data is protected with military-grade encryption and multi-layered security protocols. |
| </p> |
| </div> |
| |
| |
| <div class="bg-slate-50 rounded-xl p-8 card-hover"> |
| <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="bar-chart-2" class="text-indigo-600 w-6 h-6"></i> |
| </div> |
| <h3 class="text-xl font-bold text-slate-800 mb-3">Advanced Analytics</h3> |
| <p class="text-slate-600"> |
| Gain valuable insights with our comprehensive analytics dashboard and real-time reporting. |
| </p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-slate-100"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-slate-800 mb-4"> |
| Trusted by Industry Leaders |
| </h2> |
| <p class="text-lg text-slate-600 max-w-2xl mx-auto"> |
| Join thousands of companies who have transformed their digital presence with us. |
| </p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| |
| <div class="bg-white rounded-xl p-6 shadow-sm card-hover"> |
| <div class="flex items-center mb-4"> |
| <img src="http://static.photos/people/200x200/1" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold text-slate-800">Sarah Johnson</h4> |
| <p class="text-slate-500 text-sm">CTO, TechCorp</p> |
| </div> |
| </div> |
| <p class="text-slate-600 italic"> |
| "Digital Horizon has completely transformed our workflow. The speed and reliability are unmatched." |
| </p> |
| <div class="flex mt-4"> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-xl p-6 shadow-sm card-hover"> |
| <div class="flex items-center mb-4"> |
| <img src="http://static.photos/people/200x200/2" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold text-slate-800">Michael Chen</h4> |
| <p class="text-slate-500 text-sm">CEO, InnovateX</p> |
| </div> |
| </div> |
| <p class="text-slate-600 italic"> |
| "The analytics dashboard alone is worth the investment. The insights we've gained have been invaluable." |
| </p> |
| <div class="flex mt-4"> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-xl p-6 shadow-sm card-hover"> |
| <div class="flex items-center mb-4"> |
| <img src="http://static.photos/people/200x200/3" alt="Emily Rodriguez" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold text-slate-800">Emily Rodriguez</h4> |
| <p class="text-slate-500 text-sm">Director, Global Solutions</p> |
| </div> |
| </div> |
| <p class="text-slate-600 italic"> |
| "Implementation was seamless and their support team is fantastic. Highly recommend for enterprise solutions." |
| </p> |
| <div class="flex mt-4"> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-yellow-400"></i> |
| <i data-feather="star" class="text-yellow-400 w-4 h-4"></i> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-indigo-700"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
| <h2 class="text-3xl md:text-4xl font-bold text-white mb-6"> |
| Ready to Transform Your Digital Experience? |
| </h2> |
| <p class="text-xl text-indigo-100 max-w-2xl mx-auto mb-10"> |
| Join thousands of businesses who have already discovered the power of Digital Horizon. |
| </p> |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| <button class="bg-white text-indigo-700 hover:bg-slate-100 px-8 py-4 rounded-lg font-bold text-lg transition transform hover:scale-105"> |
| Get Started Now |
| <i data-feather="arrow-right" class="inline ml-2"></i> |
| </button> |
| <button class="bg-white/10 hover:bg-white/20 text-white px-8 py-4 rounded-lg font-bold text-lg transition border border-white/20 backdrop-blur-sm"> |
| Request Demo |
| </button> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-slate-900 text-slate-400 py-12"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
| <div> |
| <div class="flex items-center mb-4"> |
| <i data-feather="compass" class="text-indigo-500 h-6 w-6"></i> |
| <span class="ml-2 font-bold text-xl text-white">DigitalHorizon</span> |
| </div> |
| <p class="mb-4"> |
| Empowering businesses with cutting-edge digital solutions since 2023. |
| </p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-slate-400 hover:text-white transition"> |
| <i data-feather="twitter"></i> |
| </a> |
| <a href="#" class="text-slate-400 hover:text-white transition"> |
| <i data-feather="linkedin"></i> |
| </a> |
| <a href="#" class="text-slate-400 hover:text-white transition"> |
| <i data-feather="github"></i> |
| </a> |
| <a href="#" class="text-slate-400 hover:text-white transition"> |
| <i data-feather="facebook"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div> |
| <h3 class="text-white font-semibold mb-4">Product</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="hover:text-white transition">Features</a></li> |
| <li><a href="#" class="hover:text-white transition">Pricing</a></li> |
| <li><a href="#" class="hover:text-white transition">Documentation</a></li> |
| <li><a href="#" class="hover:text-white transition">API</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-white font-semibold mb-4">Company</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="hover:text-white transition">About</a></li> |
| <li><a href="#" class="hover:text-white transition">Careers</a></li> |
| <li><a href="#" class="hover:text-white transition">Blog</a></li> |
| <li><a href="#" class="hover:text-white transition">Press</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-white font-semibold mb-4">Legal</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="hover:text-white transition">Privacy</a></li> |
| <li><a href="#" class="hover:text-white transition">Terms</a></li> |
| <li><a href="#" class="hover:text-white transition">Security</a></li> |
| <li><a href="#" class="hover:text-white transition">GDPR</a></li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="border-t border-slate-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> |
| <p>© 2023 Digital Horizon Explorer. All rights reserved.</p> |
| <div class="flex space-x-6 mt-4 md:mt-0"> |
| <a href="#" class="text-slate-400 hover:text-white transition">Privacy Policy</a> |
| <a href="#" class="text-slate-400 hover:text-white transition">Terms of Service</a> |
| <a href="#" class="text-slate-400 hover:text-white transition">Cookie Policy</a> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| VANTA.NET({ |
| el: "#vanta-bg", |
| mouseControls: true, |
| touchControls: true, |
| gyroControls: false, |
| minHeight: 200.00, |
| minWidth: 200.00, |
| scale: 1.00, |
| scaleMobile: 1.00, |
| color: 0x4f46e5, |
| backgroundColor: 0x0f172a, |
| points: 12.00, |
| maxDistance: 25.00, |
| spacing: 20.00 |
| }); |
| |
| |
| document.getElementById('menu-btn').addEventListener('click', function() { |
| const menu = document.getElementById('mobile-menu'); |
| menu.classList.toggle('hidden'); |
| }); |
| |
| |
| document.addEventListener('click', function(event) { |
| const menuBtn = document.getElementById('menu-btn'); |
| const menu = document.getElementById('mobile-menu'); |
| |
| if (!menu.contains(event.target) && event.target !== menuBtn) { |
| menu.classList.add('hidden'); |
| } |
| }); |
| |
| |
| document.addEventListener('DOMContentLoaded', function() { |
| feather.replace(); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| }); |
| }); |
| }); |
| </script> |
| </body> |
| </html> |
|
|