Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>FootStyle | Premium Football Apparel</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <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://unpkg.com/feather-icons"></script> | |
| <style> | |
| .hero-gradient { | |
| background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); | |
| } | |
| .product-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| } | |
| .instagram-feed { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); | |
| gap: 1rem; | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans antialiased"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-sm sticky top-0 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"> | |
| <a href="index.html" class="flex-shrink-0 flex items-center"> | |
| <span class="text-xl font-bold text-gray-900">FOOT<span class="text-blue-600">STYLE</span></span> | |
| </a> | |
| </div> | |
| <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> | |
| <a href="index.html" class="text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 border-blue-500 text-sm font-medium">Home</a> | |
| <a href="shop.html" class="text-gray-500 hover:text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 border-transparent hover:border-gray-300 text-sm font-medium">Shop</a> | |
| <a href="about.html" class="text-gray-500 hover:text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 border-transparent hover:border-gray-300 text-sm font-medium">About</a> | |
| <a href="contact.html" class="text-gray-500 hover:text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 border-transparent hover:border-gray-300 text-sm font-medium">Contact</a> | |
| </div> | |
| <div class="flex items-center"> | |
| <button class="p-2 rounded-full text-gray-400 hover:text-gray-500 focus:outline-none"> | |
| <i data-feather="search"></i> | |
| </button> | |
| <button class="ml-4 p-2 rounded-full text-gray-400 hover:text-gray-500 focus:outline-none"> | |
| <i data-feather="user"></i> | |
| </button> | |
| <button class="ml-4 p-2 rounded-full text-gray-400 hover:text-gray-500 focus:outline-none relative"> | |
| <i data-feather="shopping-cart"></i> | |
| <span class="absolute top-0 right-0 h-4 w-4 rounded-full bg-blue-600 text-white text-xs flex items-center justify-center">3</span> | |
| </button> | |
| <button class="md:hidden ml-4 p-2 rounded-full text-gray-400 hover:text-gray-500 focus:outline-none"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <div class="hero-gradient text-white"> | |
| <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h1 class="text-4xl font-extrabold tracking-tight text-gray-900 sm:text-5xl md:text-6xl"> | |
| <span class="block">Football Style,</span> | |
| <span class="block text-blue-600">Premium Quality</span> | |
| </h1> | |
| <p class="mt-3 max-w-md mx-auto text-base text-blue-100 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl"> | |
| Official-style football jerseys, training gear and accessories for players and fans | |
| </p> | |
| <div class="mt-5 max-w-md mx-auto sm:flex sm:justify-center md:mt-8"> | |
| <div class="rounded-md shadow"> | |
| <a href="shop.html" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 md:py-4 md:text-lg md:px-10"> | |
| Shop Now | |
| </a> | |
| </div> | |
| <div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3"> | |
| <a href="#new-arrivals" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-600 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10"> | |
| New Arrivals | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- New Arrivals --> | |
| <div id="new-arrivals" class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
| New Arrivals | |
| </h2> | |
| <p class="mt-3 max-w-2xl mx-auto text-xl text-gray-500 sm:mt-4"> | |
| Fresh styles added this week | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 gap-y-10 gap-x-6 sm:grid-cols-2 lg:grid-cols-4"> | |
| <!-- Product 1 --> | |
| <div class="group relative product-card transition-all duration-300"> | |
| <div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden group-hover:opacity-75 lg:h-80 lg:aspect-none"> | |
| <img src="http://static.photos/sport/640x360/201" alt="Football Jersey" class="w-full h-full object-center object-cover lg:w-full lg:h-full"> | |
| </div> | |
| <div class="mt-4 flex justify-between"> | |
| <div> | |
| <h3 class="text-sm text-gray-700"> | |
| <a href="product.html"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| Matchday Jersey 2024 | |
| </a> | |
| </h3> | |
| <p class="mt-1 text-sm text-gray-500">Black</p> | |
| </div> | |
| <p class="text-sm font-medium text-gray-900">$24.99</p> | |
| </div> | |
| </div> | |
| <!-- Product 2 --> | |
| <div class="group relative product-card transition-all duration-300"> | |
| <div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden group-hover:opacity-75 lg:h-80 lg:aspect-none"> | |
| <img src="http://static.photos/sport/640x360/202" alt="Football Shorts" class="w-full h-full object-center object-cover lg:w-full lg:h-full"> | |
| </div> | |
| <div class="mt-4 flex justify-between"> | |
| <div> | |
| <h3 class="text-sm text-gray-700"> | |
| <a href="product.html"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| Training Shorts | |
| </a> | |
| </h3> | |
| <p class="mt-1 text-sm text-gray-500">Navy Blue</p> | |
| </div> | |
| <p class="text-sm font-medium text-gray-900">$29.99</p> | |
| </div> | |
| </div> | |
| <!-- Product 3 --> | |
| <div class="group relative product-card transition-all duration-300"> | |
| <div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden group-hover:opacity-75 lg:h-80 lg:aspect-none"> | |
| <img src="http://static.photos/sport/640x360/203" alt="Football Jacket" class="w-full h-full object-center object-cover lg:w-full lg:h-full"> | |
| </div> | |
| <div class="mt-4 flex justify-between"> | |
| <div> | |
| <h3 class="text-sm text-gray-700"> | |
| <a href="product.html"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| Stadium Jacket | |
| </a> | |
| </h3> | |
| <p class="mt-1 text-sm text-gray-500">Gray</p> | |
| </div> | |
| <p class="text-sm font-medium text-gray-900">$39.99</p> | |
| </div> | |
| </div> | |
| <!-- Product 4 --> | |
| <div class="group relative product-card transition-all duration-300"> | |
| <div class="w-full min-h-80 bg-gray-200 aspect-w-1 aspect-h-1 rounded-md overflow-hidden group-hover:opacity-75 lg:h-80 lg:aspect-none"> | |
| <img src="http://static.photos/sport/640x360/204" alt="Football Scarf" class="w-full h-full object-center object-cover lg:w-full lg:h-full"> | |
| </div> | |
| <div class="mt-4 flex justify-between"> | |
| <div> | |
| <h3 class="text-sm text-gray-700"> | |
| <a href="product.html"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| Football Scarf | |
| </a> | |
| </h3> | |
| <p class="mt-1 text-sm text-gray-500">Black/White</p> | |
| </div> | |
| <p class="text-sm font-medium text-gray-900">$19.99</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 text-center"> | |
| <a href="shop.html" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700"> | |
| View All Products | |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Featured Categories --> | |
| <div class="bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
| Football Gear | |
| </h2> | |
| <p class="mt-3 max-w-2xl mx-auto text-xl text-gray-500 sm:mt-4"> | |
| Everything for players and supporters | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 gap-y-6 sm:grid-cols-2 lg:grid-cols-3 gap-x-6"> | |
| <a href="shop.html?category=t-shirts" class="group relative bg-white border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition-shadow duration-300"> | |
| <div class="aspect-w-3 aspect-h-2 bg-gray-200 group-hover:opacity-75"> | |
| <img src="http://static.photos/sport/640x360/205" alt="Football Jerseys" class="w-full h-full object-center object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-lg font-medium text-gray-900"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| Match Jerseys | |
| </h3> | |
| <p class="mt-2 text-sm text-gray-500">Shop now</p> | |
| </div> | |
| </a> | |
| <a href="shop.html?category=shorts" class="group relative bg-white border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition-shadow duration-300"> | |
| <div class="aspect-w-3 aspect-h-2 bg-gray-200 group-hover:opacity-75"> | |
| <img src="http://static.photos/sport/640x360/206" alt="Football Shorts" class="w-full h-full object-center object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-lg font-medium text-gray-900"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| Training Wear | |
| </h3> | |
| <p class="mt-2 text-sm text-gray-500">Shop now</p> | |
| </div> | |
| </a> | |
| <a href="shop.html?category=accessories" class="group relative bg-white border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition-shadow duration-300"> | |
| <div class="aspect-w-3 aspect-h-2 bg-gray-200 group-hover:opacity-75"> | |
| <img src="http://static.photos/sport/640x360/207" alt="Football Boots" class="w-full h-full object-center object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-lg font-medium text-gray-900"> | |
| <span aria-hidden="true" class="absolute inset-0"></span> | |
| Football Boots | |
| </h3> | |
| <p class="mt-2 text-sm text-gray-500">Shop now</p> | |
| </div> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Instagram Feed --> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> | |
| <div class="text-center mb-12"> | |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
| #FootStyle | |
| </h2> | |
| <p class="mt-3 max-w-2xl mx-auto text-xl text-gray-500 sm:mt-4"> | |
| Follow us for matchday outfits and football fashion | |
| </p> | |
| <a href="https://instagram.com" class="mt-4 inline-flex items-center text-blue-600 hover:text-blue-800"> | |
| @footstyle | |
| <i data-feather="external-link" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| <div class="instagram-feed"> | |
| <img src="http://static.photos/sport/320x240/208" alt="Football player wearing jersey" class="rounded-lg"> | |
| <img src="http://static.photos/sport/320x240/209" alt="Football boots closeup" class="rounded-lg"> | |
| <img src="http://static.photos/sport/320x240/210" alt="Football stadium merchandise" class="rounded-lg"> | |
| <img src="http://static.photos/sport/320x240/211" alt="Football training session" class="rounded-lg"> | |
| <img src="http://static.photos/sport/320x240/212" alt="Football fan with scarf" class="rounded-lg"> | |
| </div> | |
| </div> | |
| <!-- Newsletter --> | |
| <div class="bg-blue-600"> | |
| <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"> | |
| <div class="lg:w-0 lg:flex-1"> | |
| <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl"> | |
| Sign up for our newsletter | |
| </h2> | |
| <p class="mt-3 max-w-3xl text-lg leading-6 text-blue-100"> | |
| Get exclusive offers, new product announcements, and style inspiration. | |
| </p> | |
| </div> | |
| <div class="mt-8 lg:mt-0 lg:ml-8"> | |
| <form class="sm:flex"> | |
| <label for="email-address" class="sr-only">Email address</label> | |
| <input id="email-address" name="email-address" type="email" autocomplete="email" required class="w-full px-5 py-3 border border-transparent placeholder-gray-500 focus:ring-2 focus:ring-offset-2 focus:ring-offset-blue-700 focus:ring-white focus:border-white sm:max-w-xs rounded-md" placeholder="Enter your email"> | |
| <div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3 sm:flex-shrink-0"> | |
| <button type="submit" class="w-full flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-blue-600 bg-white hover:bg-blue-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-blue-700 focus:ring-white"> | |
| Subscribe | |
| </button> | |
| </div> | |
| </form> | |
| <p class="mt-3 text-sm text-blue-100"> | |
| We care about your data. Read our <a href="#" class="text-white font-medium underline">Privacy Policy</a>. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900"> | |
| <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-400 tracking-wider uppercase">Shop</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="shop.html?category=t-shirts" class="text-base text-gray-300 hover:text-white">T-Shirts</a></li> | |
| <li><a href="shop.html?category=shorts" class="text-base text-gray-300 hover:text-white">Shorts</a></li> | |
| <li><a href="shop.html?category=hoodies" class="text-base text-gray-300 hover:text-white">Hoodies</a></li> | |
| <li><a href="shop.html?category=accessories" class="text-base text-gray-300 hover:text-white">Accessories</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="about.html" class="text-base text-gray-300 hover:text-white">About Us</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Sustainability</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Careers</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Terms & Conditions</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Customer Service</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="contact.html" class="text-base text-gray-300 hover:text-white">Contact Us</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Shipping Policy</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Returns & Exchanges</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">FAQs</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Connect</h3> | |
| <div class="mt-4 flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="facebook" class="h-6 w-6"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="instagram" class="h-6 w-6"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="twitter" class="h-6 w-6"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="youtube" class="h-6 w-6"></i> | |
| </a> | |
| </div> | |
| <div class="mt-6"> | |
| <h4 class="text-sm font-medium text-gray-400">Payment Methods</h4> | |
| <div class="mt-2 flex space-x-4"> | |
| <i data-feather="credit-card" class="h-6 w-6 text-gray-400"></i> | |
| <i data-feather="dollar-sign" class="h-6 w-6 text-gray-400"></i> | |
| <i data-feather="shopping-bag" class="h-6 w-6 text-gray-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 border-t border-gray-800 pt-8"> | |
| <p class="text-base text-gray-400 text-center"> | |
| © 2023 FootStyle. All rights reserved. | |
| </p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| AOS.init(); | |
| feather.replace(); | |
| // Simple cart functionality | |
| document.querySelectorAll('.product-card').forEach(card => { | |
| card.addEventListener('click', function() { | |
| window.location.href = 'product.html'; | |
| }); | |
| }); | |
| </script> | |
| </body> | |
| </html> | |