Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Message Viewer - Connect & Monitor</title> | |
| <link rel="icon" type="image/x-icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>💬</text></svg>"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> | |
| <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-20px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .float-animation { | |
| animation: float 6s ease-in-out infinite; | |
| } | |
| .glass-effect { | |
| backdrop-filter: blur(10px); | |
| background: rgba(255, 255, 255, 0.1); | |
| border: 1px solid rgba(255, 255, 255, 0.2); | |
| } | |
| .gradient-text { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-900 text-white overflow-x-hidden"> | |
| <!-- Navigation --> | |
| <nav class="fixed w-full z-50 glass-effect" data-aos="fade-down"> | |
| <div class="container mx-auto px-6 py-4"> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center space-x-2"> | |
| <i data-feather="message-square" class="w-8 h-8 text-purple-400"></i> | |
| <span class="text-2xl font-bold gradient-text">MessageHub</span> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#features" class="hover:text-purple-400 transition-colors">Features</a> | |
| <a href="#how-it-works" class="hover:text-purple-400 transition-colors">How It Works</a> | |
| <a href="dashboard.html" class="bg-purple-600 hover:bg-purple-700 px-6 py-2 rounded-full transition-all transform hover:scale-105">Get Started</a> | |
| </div> | |
| <button class="md:hidden" id="mobile-menu-btn"> | |
| <i data-feather="menu" class="w-6 h-6"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Mobile Menu --> | |
| <div id="mobile-menu" class="fixed inset-0 z-40 bg-gray-900 bg-opacity-95 hidden"> | |
| <div class="flex flex-col items-center justify-center h-full space-y-8"> | |
| <a href="#features" class="text-2xl hover:text-purple-400 transition-colors mobile-menu-link">Features</a> | |
| <a href="#how-it-works" class="text-2xl hover:text-purple-400 transition-colors mobile-menu-link">How It Works</a> | |
| <a href="dashboard.html" class="bg-purple-600 hover:bg-purple-700 px-8 py-3 rounded-full text-xl transition-all">Get Started</a> | |
| </div> | |
| </div> | |
| <!-- Hero Section --> | |
| <section class="min-h-screen flex items-center justify-center relative overflow-hidden"> | |
| <div class="absolute inset-0 z-0"> | |
| <div id="vanta-bg" class="w-full h-full"></div> | |
| </div> | |
| <div class="container mx-auto px-6 text-center relative z-10"> | |
| <h1 class="text-5xl md:text-7xl font-bold mb-6" data-aos="fade-up"> | |
| View Messages from<br> | |
| <span class="gradient-text">Any Device</span> | |
| </h1> | |
| <p class="text-xl md:text-2xl text-gray-300 mb-8 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="200"> | |
| Seamlessly monitor and manage messages across multiple devices with our secure, real-time platform | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4 justify-center" data-aos="fade-up" data-aos-delay="400"> | |
| <a href="dashboard.html" class="bg-purple-600 hover:bg-purple-700 px-8 py-4 rounded-full text-lg font-semibold transition-all transform hover:scale-105 flex items-center justify-center space-x-2"> | |
| <span>Start Monitoring</span> | |
| <i data-feather="arrow-right" class="w-5 h-5"></i> | |
| </a> | |
| <button class="border-2 border-purple-400 hover:bg-purple-400 hover:bg-opacity-20 px-8 py-4 rounded-full text-lg font-semibold transition-all flex items-center justify-center space-x-2"> | |
| <i data-feather="play" class="w-5 h-5"></i> | |
| <span>Watch Demo</span> | |
| </button> | |
| </div> | |
| </div> | |
| <div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 float-animation"> | |
| <i data-feather="chevron-down" class="w-8 h-8 text-purple-400"></i> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section id="features" class="py-20 bg-gray-800"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-4xl md:text-5xl font-bold text-center mb-16" data-aos="fade-up"> | |
| Powerful <span class="gradient-text">Features</span> | |
| </h2> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="bg-gray-700 p-8 rounded-2xl hover:bg-gray-600 transition-all transform hover:scale-105" data-aos="fade-up" data-aos-delay="100"> | |
| <div class="bg-purple-600 w-16 h-16 rounded-full flex items-center justify-center mb-6"> | |
| <i data-feather="smartphone" class="w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">Multi-Device Support</h3> | |
| <p class="text-gray-300">Connect and monitor messages from Android, iOS, and other platforms simultaneously</p> | |
| </div> | |
| <div class="bg-gray-700 p-8 rounded-2xl hover:bg-gray-600 transition-all transform hover:scale-105" data-aos="fade-up" data-aos-delay="200"> | |
| <div class="bg-purple-600 w-16 h-16 rounded-full flex items-center justify-center mb-6"> | |
| <i data-feather="shield" class="w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">End-to-End Encryption</h3> | |
| <p class="text-gray-300">Your data is protected with military-grade encryption and secure protocols</p> | |
| </div> | |
| <div class="bg-gray-700 p-8 rounded-2xl hover:bg-gray-600 transition-all transform hover:scale-105" data-aos="fade-up" data-aos-delay="300"> | |
| <div class="bg-purple-600 w-16 h-16 rounded-full flex items-center justify-center mb-6"> | |
| <i data-feather="clock" class="w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-2xl font-bold mb-4">Real-Time Sync</h3> | |
| <p class="text-gray-300">Get instant updates and notifications as messages arrive on connected devices</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- How It Works Section --> | |
| <section id="how-it-works" class="py-20 bg-gray-900"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-4xl md:text-5xl font-bold text-center mb-16" data-aos="fade-up"> | |
| How It <span class="gradient-text">Works</span> | |
| </h2> | |
| <div class="max-w-4xl mx-auto"> | |
| <div class="flex flex-col md:flex-row items-center mb-12" data-aos="fade-right"> | |
| <div class="bg-purple-600 w-12 h-12 rounded-full flex items-center justify-center font-bold text-xl mb-4 md:mb-0 md:mr-6">1</div> | |
| <div class="text-center md:text-left"> | |
| <h3 class="text-2xl font-bold mb-2">Connect Your Device</h3> | |
| <p class="text-gray-300">Install our secure connector app on the target device</p> | |
| </div> | |
| </div> | |
| <div class="flex flex-col md:flex-row items-center mb-12" data-aos="fade-left"> | |
| <div class="bg-purple-600 w-12 h-12 rounded-full flex items-center justify-center font-bold text-xl mb-4 md:mb-0 md:mr-6">2</div> | |
| <div class="text-center md:text-left"> | |
| <h3 class="text-2xl font-bold mb-2">Authenticate & Sync</h3> | |
| <p class="text-gray-300">Verify your identity and establish secure connection</p> | |
| </div> | |
| </div> | |
| <div class="flex flex-col md:flex-row items-center" data-aos="fade-right"> | |
| <div class="bg-purple-600 w-12 h-12 rounded-full flex items-center justify-center font-bold text-xl mb-4 md:mb-0 md:mr-6">3</div> | |
| <div class="text-center md:text-left"> | |
| <h3 class="text-2xl font-bold mb-2">Start Monitoring</h3> | |
| <p class="text-gray-300">Access all messages, calls, and media from your dashboard</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-20 bg-gradient-to-r from-purple-600 to-purple-800"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h2 class="text-4xl md:text-5xl font-bold mb-6" data-aos="fade-up">Ready to Get Started?</h2> | |
| <p class="text-xl mb-8 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="200">Join thousands of users who trust MessageHub for their monitoring needs</p> | |
| <a href="dashboard.html" class="bg-white text-purple-600 hover:bg-gray-100 px-8 py-4 rounded-full text-lg font-semibold transition-all transform hover:scale-105 inline-block" data-aos="fade-up" data-aos-delay="400"> | |
| Create Free Account | |
| </a> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800 py-12"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <div class="flex items-center space-x-2 mb-4 md:mb-0"> | |
| <i data-feather="message-square" class="w-6 h-6 text-purple-400"></i> | |
| <span class="text-xl font-bold gradient-text">MessageHub</span> | |
| </div> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="hover:text-purple-400 transition-colors">Privacy Policy</a> | |
| <a href="#" class="hover:text-purple-400 transition-colors">Terms of Service</a> | |
| <a href="#" class="hover:text-purple-400 transition-colors">Support</a> | |
| </div> | |
| </div> | |
| <div class="text-center mt-8 text-gray-400"> | |
| <p>© 2024 MessageHub. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> | |
| <script> | |
| // Initialize Vanta.js background | |
| VANTA.GLOBE({ | |
| el: "#vanta-bg", | |
| mouseControls: true, | |
| touchControls: true, | |
| gyroControls: false, | |
| minHeight: 200.00, | |
| minWidth: 200.00, | |
| scale: 1.00, | |
| scaleMobile: 1.00, | |
| color: 0x667eea, | |
| color2: 0x764ba2, | |
| size: 1.00, | |
| backgroundColor: 0x111827 | |
| }); | |
| // Mobile menu toggle | |
| const mobileMenuBtn = document.getElementById('mobile-menu-btn'); | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| const mobileMenuLinks = document.querySelectorAll('.mobile-menu-link'); | |
| mobileMenuBtn.addEventListener('click', () => { | |
| mobileMenu.classList.toggle('hidden'); | |
| }); | |
| mobileMenuLinks.forEach(link => { | |
| link.addEventListener('click', () => { | |
| mobileMenu.classList.add('hidden'); | |
| }); | |
| }); | |
| // Smooth scrolling | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| const target = document.querySelector(this.getAttribute('href')); | |
| if (target) { | |
| target.scrollIntoView({ behavior: 'smooth' }); | |
| } | |
| }); | |
| }); | |
| // Initialize AOS | |
| AOS.init({ | |
| duration: 1000, | |
| once: true | |
| }); | |
| // Initialize Feather Icons | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |