| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Man 'o War Mouse Mods | Ultra-Lightweight 3D-Printed Mouse Shells</title> |
| <meta name="description" content="Revolutionary 3D-printed mouse shells under 40g. Experience the future of gaming peripherals with our cutting-edge lightweight designs."> |
| <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=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet"> |
| <style> |
| :root { |
| --primary: #3a86ff; |
| --primary-dark: #2667cc; |
| --dark: #1a1a2e; |
| --light: #f8f9fa; |
| } |
| |
| body { |
| font-family: 'Inter', sans-serif; |
| background-color: var(--light); |
| color: var(--dark); |
| transition: all 0.3s ease; |
| } |
| |
| .dark body { |
| background-color: var(--dark); |
| color: var(--light); |
| } |
| |
| .title-font { |
| font-family: 'Space Grotesk', sans-serif; |
| } |
| |
| .glass-effect { |
| background: rgba(255, 255, 255, 0.2); |
| backdrop-filter: blur(10px); |
| -webkit-backdrop-filter: blur(10px); |
| border: 1px solid rgba(255, 255, 255, 0.18); |
| } |
| |
| .dark .glass-effect { |
| background: rgba(26, 26, 46, 0.7); |
| } |
| |
| .hero-gradient { |
| background: linear-gradient(135deg, rgba(58, 134, 255, 0.15) 0%, rgba(26, 26, 46, 0) 60%); |
| } |
| |
| .dark .hero-gradient { |
| background: linear-gradient(135deg, rgba(58, 134, 255, 0.25) 0%, rgba(26, 26, 46, 0) 60%); |
| } |
| |
| .product-card: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); |
| } |
| |
| .testimonial-card { |
| transition: all 0.3s ease; |
| } |
| |
| .testimonial-card:hover { |
| transform: scale(1.02); |
| } |
| |
| .nav-link { |
| position: relative; |
| } |
| |
| .nav-link::after { |
| content: ''; |
| position: absolute; |
| width: 0; |
| height: 2px; |
| bottom: -2px; |
| left: 0; |
| background-color: var(--primary); |
| transition: width 0.3s ease; |
| } |
| |
| .nav-link:hover::after { |
| width: 100%; |
| } |
| |
| .toggle-checkbox:checked { |
| right: 0; |
| border-color: var(--primary); |
| } |
| |
| .toggle-checkbox:checked + .toggle-label { |
| background-color: var(--primary); |
| } |
| |
| .scroll-down { |
| animation: bounce 2s infinite; |
| } |
| |
| @keyframes bounce { |
| 0%, 20%, 50%, 80%, 100% { |
| transform: translateY(0); |
| } |
| 40% { |
| transform: translateY(-10px); |
| } |
| 60% { |
| transform: translateY(-5px); |
| } |
| } |
| |
| .fade-in { |
| animation: fadeIn 1s ease-in; |
| } |
| |
| @keyframes fadeIn { |
| from { opacity: 0; } |
| to { opacity: 1; } |
| } |
| |
| .parallax { |
| background-attachment: fixed; |
| background-position: center; |
| background-repeat: no-repeat; |
| background-size: cover; |
| } |
| |
| @media (max-width: 768px) { |
| .parallax { |
| background-attachment: scroll; |
| } |
| } |
| </style> |
| </head> |
| <body class="dark:bg-gray-900"> |
| |
| <div class="fixed top-4 right-4 z-50"> |
| <div class="relative inline-block w-12 mr-2 align-middle select-none"> |
| <input type="checkbox" name="toggle" id="toggle" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer"/> |
| <label for="toggle" class="toggle-label block overflow-hidden h-6 rounded-full bg-gray-300 cursor-pointer"></label> |
| </div> |
| <label for="toggle" class="text-xs font-medium text-gray-700 dark:text-gray-300"> |
| <i class="fas fa-moon"></i> |
| </label> |
| </div> |
|
|
| |
| <nav class="fixed w-full z-40 glass-effect dark:bg-gray-900/80 shadow-sm"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex justify-between h-16 items-center"> |
| <div class="flex-shrink-0 flex items-center"> |
| <span class="title-font text-2xl font-bold text-blue-500">Man 'o War</span> |
| <span class="ml-1 title-font text-2xl font-light">Mouse Mods</span> |
| </div> |
| <div class="hidden md:block"> |
| <div class="ml-10 flex items-baseline space-x-8"> |
| <a href="#home" class="nav-link px-3 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 hover:text-blue-500">Home</a> |
| <a href="#about" class="nav-link px-3 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 hover:text-blue-500">About</a> |
| <a href="#products" class="nav-link px-3 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 hover:text-blue-500">Products</a> |
| <a href="#technology" class="nav-link px-3 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 hover:text-blue-500">Technology</a> |
| <a href="#testimonials" class="nav-link px-3 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 hover:text-blue-500">Testimonials</a> |
| <a href="#contact" class="ml-4 px-4 py-2 rounded-md text-sm font-medium text-white bg-blue-500 hover:bg-blue-600 transition duration-300">Order Now</a> |
| </div> |
| </div> |
| <div class="-mr-2 flex md:hidden"> |
| <button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 dark:text-gray-300 hover:text-blue-500 focus:outline-none"> |
| <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> |
| </svg> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div id="mobile-menu" class="hidden md:hidden bg-white dark:bg-gray-800 shadow-lg rounded-b-lg"> |
| <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
| <a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 dark:text-gray-300 hover:text-blue-500">Home</a> |
| <a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 dark:text-gray-300 hover:text-blue-500">About</a> |
| <a href="#products" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 dark:text-gray-300 hover:text-blue-500">Products</a> |
| <a href="#technology" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 dark:text-gray-300 hover:text-blue-500">Technology</a> |
| <a href="#testimonials" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 dark:text-gray-300 hover:text-blue-500">Testimonials</a> |
| <a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-white bg-blue-500 hover:bg-blue-600">Order Now</a> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section id="home" class="relative h-screen flex items-center justify-center overflow-hidden hero-gradient"> |
| <div class="absolute inset-0 z-0"> |
| <video autoplay loop muted playsinline class="w-full h-full object-cover"> |
| <source src="https://assets.mixkit.co/videos/preview/mixkit-close-up-of-computer-mouse-clicking-17253-large.mp4" type="video/mp4"> |
| </video> |
| <div class="absolute inset-0 bg-black opacity-30"></div> |
| </div> |
| |
| <div class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
| <div class="glass-effect rounded-2xl p-8 md:p-12 inline-block max-w-4xl"> |
| <h1 class="title-font text-4xl md:text-6xl font-bold text-white mb-4">Redefining Mouse Performance</h1> |
| <p class="text-xl md:text-2xl text-gray-200 mb-8">Ultra-lightweight 3D-printed shells under 40g for competitive gaming</p> |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| <a href="#products" class="px-8 py-3 rounded-lg text-lg font-semibold text-white bg-blue-500 hover:bg-blue-600 transition duration-300 transform hover:scale-105">Explore Products</a> |
| <a href="#technology" class="px-8 py-3 rounded-lg text-lg font-semibold text-white bg-transparent border-2 border-white hover:bg-white hover:bg-opacity-20 transition duration-300 transform hover:scale-105">Our Technology</a> |
| </div> |
| </div> |
| </div> |
| |
| <div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 z-10 scroll-down"> |
| <a href="#about" class="text-white"> |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 animate-bounce" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3" /> |
| </svg> |
| </a> |
| </div> |
| </section> |
|
|
| |
| <section id="about" class="py-20 bg-white dark:bg-gray-900"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="title-font text-3xl md:text-4xl font-bold text-gray-900 dark:text-white mb-4">The Future of Gaming Peripherals</h2> |
| <div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div> |
| <p class="max-w-2xl mx-auto text-lg text-gray-600 dark:text-gray-300">Pushing the boundaries of weight reduction without compromising durability or performance.</p> |
| </div> |
| |
| <div class="grid md:grid-cols-2 gap-12 items-center"> |
| <div class="fade-in"> |
| <h3 class="title-font text-2xl font-semibold text-gray-900 dark:text-white mb-4">Why Weight Matters</h3> |
| <p class="text-gray-600 dark:text-gray-300 mb-6">In competitive gaming, every millisecond counts. Our sub-40g mouse shells provide the ultimate advantage with faster movements, reduced fatigue, and improved precision during extended gaming sessions.</p> |
| |
| <div class="space-y-4"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0 mt-1"> |
| <div class="flex items-center justify-center h-6 w-6 rounded-full bg-blue-500 text-white"> |
| <svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
| </svg> |
| </div> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700 dark:text-gray-300 font-medium">Up to 60% lighter than standard gaming mice</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="flex-shrink-0 mt-1"> |
| <div class="flex items-center justify-center h-6 w-6 rounded-full bg-blue-500 text-white"> |
| <svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
| </svg> |
| </div> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700 dark:text-gray-300 font-medium">Precision-engineered for optimal weight distribution</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="flex-shrink-0 mt-1"> |
| <div class="flex items-center justify-center h-6 w-6 rounded-full bg-blue-500 text-white"> |
| <svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /> |
| </svg> |
| </div> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700 dark:text-gray-300 font-medium">Customizable designs to match your play style</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="relative"> |
| <div class="glass-effect rounded-2xl overflow-hidden shadow-xl transform rotate-1 hover:rotate-0 transition duration-500"> |
| <img src="https://images.unsplash.com/photo-1591488320449-011701bb6704?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="3D printed mouse shell" class="w-full h-auto"> |
| </div> |
| <div class="absolute -bottom-6 -right-6 bg-blue-500 text-white px-6 py-3 rounded-lg shadow-lg"> |
| <span class="title-font text-xl font-bold">39g</span> |
| <span class="block text-xs">ULTRA-LIGHTWEIGHT</span> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="products" class="py-20 bg-gray-50 dark:bg-gray-800 parallax" style="background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="title-font text-3xl md:text-4xl font-bold text-white mb-4">Our Product Line</h2> |
| <div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div> |
| <p class="max-w-2xl mx-auto text-lg text-gray-200">Choose the perfect shell for your gaming needs</p> |
| </div> |
| |
| <div class="grid md:grid-cols-3 gap-8"> |
| |
| <div class="product-card bg-white dark:bg-gray-900 rounded-xl shadow-lg overflow-hidden transition duration-300"> |
| <div class="relative h-64"> |
| <img src="https://images.unsplash.com/photo-1527814050087-3793815479db?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1528&q=80" alt="Vanguard Shell" class="w-full h-full object-cover"> |
| <div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent"></div> |
| <div class="absolute bottom-0 left-0 p-4"> |
| <h3 class="title-font text-2xl font-bold text-white">Vanguard</h3> |
| <p class="text-blue-300 font-medium">38g</p> |
| </div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-center mb-4"> |
| <span class="bg-blue-100 text-blue-800 text-xs font-semibold px-2.5 py-0.5 rounded dark:bg-blue-200 dark:text-blue-800">BEST SELLER</span> |
| <span class="text-gray-900 dark:text-white font-bold text-xl">$89.99</span> |
| </div> |
| <p class="text-gray-600 dark:text-gray-300 mb-4">Our flagship design with optimal weight distribution for FPS games.</p> |
| <ul class="space-y-2 mb-6"> |
| <li class="flex items-center"> |
| <svg class="w-4 h-4 mr-2 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> |
| </svg> |
| <span class="text-gray-600 dark:text-gray-300">Honeycomb structure</span> |
| </li> |
| <li class="flex items-center"> |
| <svg class="w-4 h-4 mr-2 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> |
| </svg> |
| <span class="text-gray-600 dark:text-gray-300">Reinforced stress points</span> |
| </li> |
| <li class="flex items-center"> |
| <svg class="w-4 h-4 mr-2 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> |
| </svg> |
| <span class="text-gray-600 dark:text-gray-300">Ergonomic thumb rest</span> |
| </li> |
| </ul> |
| <button class="w-full px-4 py-2 bg-blue-500 hover:bg-blue-600 text-white font-medium rounded-lg transition duration-300">Add to Cart</button> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white dark:bg-gray-900 rounded-xl shadow-lg overflow-hidden transition duration-300"> |
| <div class="relative h-64"> |
| <img src="https://images.unsplash.com/photo-1546054454-aa26e2b734c7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1480&q=80" alt="Phantom Shell" class="w-full h-full object-cover"> |
| <div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent"></div> |
| <div class="absolute bottom-0 left-0 p-4"> |
| <h3 class="title-font text-2xl font-bold text-white">Phantom</h3> |
| <p class="text-blue-300 font-medium">36g</p> |
| </div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-center mb-4"> |
| <span class="bg-purple-100 text-purple-800 text-xs font-semibold px-2.5 py-0.5 rounded dark:bg-purple-200 dark:text-purple-800">NEW</span> |
| <span class="text-gray-900 dark:text-white font-bold text-xl">$99.99</span> |
| </div> |
| <p class="text-gray-600 dark:text-gray-300 mb-4">Ultra-light design with enhanced airflow for palm grip users.</p> |
| <ul class="space-y-2 mb-6"> |
| <li class="flex items-center"> |
| <svg class="w-4 h-4 mr-2 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> |
| </svg> |
| <span class="text-gray-600 dark:text-gray-300">Full honeycomb coverage</span> |
| </li> |
| <li class="flex items-center"> |
| <svg class="w-4 h-4 mr-2 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> |
| </svg> |
| <span class="text-gray-600 dark:text-gray-300">Extended pinky rest</span> |
| </li> |
| <li class="flex items-center"> |
| <svg class="w-4 h-4 mr-2 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> |
| </svg> |
| <span class="text-gray-600 dark:text-gray-300">Anti-slip side grips</span> |
| </li> |
| </ul> |
| <button class="w-full px-4 py-2 bg-blue-500 hover:bg-blue-600 text-white font-medium rounded-lg transition duration-300">Add to Cart</button> |
| </div> |
| </div> |
| |
| |
| <div class="product-card bg-white dark:bg-gray-900 rounded-xl shadow-lg overflow-hidden transition duration-300"> |
| <div class="relative h-64"> |
| <img src="https://images.unsplash.com/photo-1600086824249-55a8153e9a08?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Titan Shell" class="w-full h-full object-cover"> |
| <div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent"></div> |
| <div class="absolute bottom-0 left-0 p-4"> |
| <h3 class="title-font text-2xl font-bold text-white">Titan</h3> |
| <p class="text-blue-300 font-medium">39g</p> |
| </div> |
| </div> |
| <div class="p-6"> |
| <div class="flex justify-between items-center mb-4"> |
| <span class="bg-green-100 text-green-800 text-xs font-semibold px-2.5 py-0.5 rounded dark:bg-green-200 dark:text-green-800">DURABLE</span> |
| <span class="text-gray-900 dark:text-white font-bold text-xl">$79.99</span> |
| </div> |
| <p class="text-gray-600 dark:text-gray-300 mb-4">Balanced design with reinforced structure for durability.</p> |
| <ul class="space-y-2 mb-6"> |
| <li class="flex items-center"> |
| <svg class="w-4 h-4 mr-2 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> |
| </svg> |
| <span class="text-gray-600 dark:text-gray-300">Strategic honeycomb pattern</span> |
| </li> |
| <li class="flex items-center"> |
| <svg class="w-4 h-4 mr-2 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> |
| </svg> |
| <span class="text-gray-600 dark:text-gray-300">Thicker base structure</span> |
| </li> |
| <li class="flex items-center"> |
| <svg class="w-4 h-4 mr-2 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path> |
| </svg> |
| <span class="text-gray-600 dark:text-gray-300">Enhanced side grips</span> |
| </li> |
| </ul> |
| <button class="w-full px-4 py-2 bg-blue-500 hover:bg-blue-600 text-white font-medium rounded-lg transition duration-300">Add to Cart</button> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center mt-12"> |
| <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-500 hover:bg-blue-600 transition duration-300"> |
| View All Products |
| <svg class="ml-3 -mr-1 h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14 5l7 7m0 0l-7 7m7-7H3"></path> |
| </svg> |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="technology" class="py-20 bg-white dark:bg-gray-900"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="title-font text-3xl md:text-4xl font-bold text-gray-900 dark:text-white mb-4">Cutting-Edge Technology</h2> |
| <div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div> |
| <p class="max-w-2xl mx-auto text-lg text-gray-600 dark:text-gray-300">Innovative manufacturing techniques for unparalleled performance</p> |
| </div> |
| |
| <div class="grid md:grid-cols-3 gap-8"> |
| |
| <div class="glass-effect rounded-xl p-8 transition duration-300 hover:shadow-xl"> |
| <div class="flex justify-center mb-6"> |
| <div class="flex items-center justify-center h-16 w-16 rounded-full bg-blue-100 text-blue-500"> |
| <i class="fas fa-print text-2xl"></i> |
| </div> |
| </div> |
| <h3 class="text-center text-xl font-semibold text-gray-900 dark:text-white mb-3">Advanced 3D Printing</h3> |
| <p class="text-center text-gray-600 dark:text-gray-300">Using industrial-grade resin printers with 25μm resolution for precision that rivals injection molding.</p> |
| </div> |
| |
| |
| <div class="glass-effect rounded-xl p-8 transition duration-300 hover:shadow-xl"> |
| <div class="flex justify-center mb-6"> |
| <div class="flex items-center justify-center h-16 w-16 rounded-full bg-blue-100 text-blue-500"> |
| <i class="fas fa-atom text-2xl"></i> |
| </div> |
| </div> |
| <h3 class="text-center text-xl font-semibold text-gray-900 dark:text-white mb-3">Material Innovation</h3> |
| <p class="text-center text-gray-600 dark:text-gray-300">Our proprietary resin blend offers the perfect balance of strength and weight reduction.</p> |
| </div> |
| |
| |
| <div class="glass-effect rounded-xl p-8 transition duration-300 hover:shadow-xl"> |
| <div class="flex justify-center mb-6"> |
| <div class="flex items-center justify-center h-16 w-16 rounded-full bg-blue-100 text-blue-500"> |
| <i class="fas fa-project-diagram text-2xl"></i> |
| </div> |
| </div> |
| <h3 class="text-center text-xl font-semibold text-gray-900 dark:text-white mb-3">Structural Optimization</h3> |
| <p class="text-center text-gray-600 dark:text-gray-300">AI-assisted design creates optimal honeycomb patterns for maximum strength with minimal weight.</p> |
| </div> |
| </div> |
| |
| <div class="mt-16 grid md:grid-cols-2 gap-12 items-center"> |
| <div class="order-2 md:order-1"> |
| <h3 class="title-font text-2xl font-semibold text-gray-900 dark:text-white mb-4">Precision Engineering</h3> |
| <p class="text-gray-600 dark:text-gray-300 mb-6">Each shell undergoes rigorous testing to ensure perfect balance and structural integrity. Our quality control process includes:</p> |
| |
| <div class="space-y-4"> |
| <div class="flex"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> |
| <span class="text-xl font-bold">1</span> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-medium text-gray-900 dark:text-white">Stress Simulation</h4> |
| <p class="mt-1 text-gray-600 dark:text-gray-300">Finite element analysis predicts weak points before printing.</p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> |
| <span class="text-xl font-bold">2</span> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-medium text-gray-900 dark:text-white">Dimensional Verification</h4> |
| <p class="mt-1 text-gray-600 dark:text-gray-300">Laser scanning ensures micron-level accuracy to original specs.</p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> |
| <span class="text-xl font-bold">3</span> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-medium text-gray-900 dark:text-white">Weight Certification</h4> |
| <p class="mt-1 text-gray-600 dark:text-gray-300">Each shell is individually weighed to guarantee sub-40g compliance.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="order-1 md:order-2"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1581093458171-13a1187f946f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="3D printing process" class="rounded-xl shadow-xl w-full"> |
| <div class="absolute -bottom-6 -left-6 bg-white dark:bg-gray-800 p-4 rounded-lg shadow-lg"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 bg-blue-500 rounded-md p-2"> |
| <i class="fas fa-weight text-white"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-sm font-medium text-gray-500 dark:text-gray-300">AVERAGE WEIGHT</p> |
| <p class="text-lg font-bold text-gray-900 dark:text-white">38.7g</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="testimonials" class="py-20 bg-gray-50 dark:bg-gray-800"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="title-font text-3xl md:text-4xl font-bold text-gray-900 dark:text-white mb-4">What Gamers Say</h2> |
| <div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div> |
| <p class="max-w-2xl mx-auto text-lg text-gray-600 dark:text-gray-300">Professional gamers and enthusiasts trust our products</p> |
| </div> |
| |
| <div class="grid md:grid-cols-3 gap-8"> |
| |
| <div class="testimonial-card bg-white dark:bg-gray-900 rounded-xl shadow-lg p-8"> |
| <div class="flex items-center mb-4"> |
| <div class="flex-shrink-0"> |
| <img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Testimonial author"> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-semibold text-gray-900 dark:text-white">Marcus "Frost" Chen</h4> |
| <p class="text-blue-500">Professional FPS Player</p> |
| </div> |
| </div> |
| <div class="text-gray-600 dark:text-gray-300 mb-4"> |
| <p>"The Vanguard shell transformed my gameplay. The weight reduction gave me faster flicks while maintaining perfect balance. My K/D ratio improved by 18% after switching."</p> |
| </div> |
| <div class="flex"> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| </div> |
| </div> |
| |
| |
| <div class="testimonial-card bg-white dark:bg-gray-900 rounded-xl shadow-lg p-8"> |
| <div class="flex items-center mb-4"> |
| <div class="flex-shrink-0"> |
| <img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Testimonial author"> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-semibold text-gray-900 dark:text-white">Sarah "Valkyrie" Park</h4> |
| <p class="text-blue-500">Esports Team Captain</p> |
| </div> |
| </div> |
| <div class="text-gray-600 dark:text-gray-300 mb-4"> |
| <p>"After trying multiple lightweight options, Man 'o War stands out for durability. Our entire team switched and we've seen consistent performance improvements across tournaments."</p> |
| </div> |
| <div class="flex"> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| </div> |
| </div> |
| |
| |
| <div class="testimonial-card bg-white dark:bg-gray-900 rounded-xl shadow-lg p-8"> |
| <div class="flex items-center mb-4"> |
| <div class="flex-shrink-0"> |
| <img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/75.jpg" alt="Testimonial author"> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-semibold text-gray-900 dark:text-white">David "Trigger" Müller</h4> |
| <p class="text-blue-500">Tech Reviewer</p> |
| </div> |
| </div> |
| <div class="text-gray-600 dark:text-gray-300 mb-4"> |
| <p>"The engineering behind these shells is revolutionary. After 6 months of heavy use, my Phantom shell shows no signs of wear while maintaining its original weight and balance."</p> |
| </div> |
| <div class="flex"> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.� 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| <svg class="h-5 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"> |
| <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-20 bg-white dark:bg-gray-900"> |
| <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"> |
| <div class="max-w-lg mx-auto lg:max-w-none lg:mx-0"> |
| <div class="text-center lg:text-left"> |
| <h2 class="title-font text-3xl md:text-4xl font-bold text-gray-900 dark:text-white mb-4">Ready to Upgrade?</h2> |
| <div class="w-20 h-1 bg-blue-500 mb-6 lg:mx-0 mx-auto"></div> |
| <p class="text-lg text-gray-600 dark:text-gray-300 mb-8">Have questions about our products or want to discuss custom solutions? Our team is here to help.</p> |
| |
| <div class="space-y-6"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> |
| <i class="fas fa-envelope"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900 dark:text-white">Email us</h3> |
| <p class="text-gray-600 dark:text-gray-300">support@manowarmods.com</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> |
| <i class="fas fa-phone-alt"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900 dark:text-white">Call us</h3> |
| <p class="text-gray-600 dark:text-gray-300">+1 (555) 123-4567</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> |
| <i class="fas fa-map-marker-alt"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <h3 class="text-lg font-medium text-gray-900 dark:text-white">Visit us</h3> |
| <p class="text-gray-600 dark:text-gray-300">123 Tech Park, Innovation City</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-12 lg:mt-0"> |
| <div class="glass-effect rounded-lg shadow-xl p-8"> |
| <h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-6">Send us a message</h3> |
| <form class="space-y-6"> |
| <div> |
| <label for="name" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Your Name</label> |
| <input type="text" id="name" name="name" class="w-full px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-800 dark:text-white" required> |
| </div> |
| |
| <div> |
| <label for="email" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Email Address</label> |
| <input type="email" id="email" name="email" class="w-full px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-800 dark:text-white" required> |
| </div> |
| |
| <div> |
| <label for="subject" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Subject</label> |
| <input type="text" id="subject" name="subject" class="w-full px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-800 dark:text-white" required> |
| </div> |
| |
| <div> |
| <label for="message" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1">Message</label> |
| <textarea id="message" name="message" rows="4" class="w-full px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-md focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-800 dark:text-white" required></textarea> |
| </div> |
| |
| <div> |
| <button type="submit" class="w-full px-6 py-3 bg-blue-500 hover:bg-blue-600 text-white font-medium rounded-md transition duration-300">Send Message</button> |
| </div> |
| </form> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <div class="bg-gray-50 dark:bg-gray-800 py-16"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="glass-effect rounded-xl p-8 md:p-12 text-center"> |
| <h2 class="title-font text-3xl font-bold text-gray-900 dark:text-white mb-4">Stay Updated</h2> |
| <p class="max-w-2xl mx-auto text-lg text-gray-600 dark:text-gray-300 mb-8">Subscribe to our newsletter for product updates, exclusive offers, and gaming tips.</p> |
| |
| <form class="max-w-md mx-auto flex"> |
| <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-md border border-gray-300 dark:border-gray-600 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-800 dark:text-white" required> |
| <button type="submit" class="px-6 py-3 bg-blue-500 hover:bg-blue-600 text-white font-medium rounded-r-md transition duration-300">Subscribe</button> |
| </form> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <footer class="bg-gray-900 text-white pt-12 pb-8"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> |
| <div> |
| <h3 class="title-font text-lg font-semibold mb-4">Products</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Vanguard</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Phantom</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Titan</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Accessories</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="title-font text-lg font-semibold mb-4">Support</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Documentation</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Guides</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">API Status</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="title-font text-lg font-semibold mb-4">Company</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">About</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Careers</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Press</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="title-font text-lg font-semibold mb-4">Legal</h3> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Cookie Policy</a></li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center"> |
| <div class="flex items-center mb-4 md:mb-0"> |
| <span class="title-font text-xl font-bold text-blue-500">Man 'o War</span> |
| <span class="ml-1 title-font text-xl font-light text-white">Mouse Mods</span> |
| </div> |
| |
| <div class="flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| <i class="fab fa-twitter text-xl"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| <i class="fab fa-instagram text-xl"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| <i class="fab fa-discord text-xl"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
| <i class="fab fa-youtube text-xl"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div class="mt-8 text-center text-gray-500 text-sm"> |
| <p>© 2023 Man 'o War Mouse Mods. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { |
| const menu = document.getElementById('mobile-menu'); |
| menu.classList.toggle('hidden'); |
| }); |
| |
| |
| const toggle = document.getElementById('toggle'); |
| const html = document.querySelector('html'); |
| |
| |
| if (localStorage.getItem('darkMode') === 'true') { |
| html.classList.add('dark'); |
| toggle.checked = true; |
| } else { |
| html.classList.remove('dark'); |
| toggle.checked = false; |
| } |
| |
| |
| toggle.addEventListener('change', function() { |
| if (this.checked) { |
| html.classList.add('dark'); |
| localStorage.setItem('darkMode', 'true'); |
| } else { |
| html.classList.remove('dark'); |
| localStorage.setItem('darkMode', 'false'); |
| } |
| }); |
| |
| |
| </html> |