Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Tracks - Racer's Edge</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <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> | |
| <style> | |
| .track-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.1), 0 10px 10px -5px rgba(239, 68, 68, 0.04); | |
| } | |
| .filter-active { | |
| background-color: #ef4444; | |
| color: white; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-900 text-white"> | |
| <div class="min-h-screen flex flex-col"> | |
| <!-- Header --> | |
| <header class="py-6 px-4 sm:px-6 lg:px-8 bg-black bg-opacity-70 backdrop-blur-sm"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <i data-feather="flag" class="w-8 h-8 text-red-500 mr-3"></i> | |
| <h1 class="text-2xl font-bold bg-gradient-to-r from-red-500 to-yellow-500 bg-clip-text text-transparent">Racer's Edge</h1> | |
| </div> | |
| <nav class="hidden md:flex space-x-8"> | |
| <a href="index.html" class="hover:text-red-400 transition">Home</a> | |
| <a href="cars.html" class="hover:text-red-400 transition">Cars</a> | |
| <a href="tracks.html" class="text-red-400">Tracks</a> | |
| <a href="community.html" class="hover:text-red-400 transition">Community</a> | |
| </nav> | |
| <button class="md:hidden"> | |
| <i data-feather="menu" class="w-6 h-6"></i> | |
| </button> | |
| </div> | |
| </header> | |
| <!-- Main Content --> | |
| <main class="container mx-auto px-4 py-16 flex-grow"> | |
| <div class="mb-12"> | |
| <h1 class="text-4xl font-bold mb-6">Available Tracks</h1> | |
| <p class="text-gray-300 max-w-3xl">Browse professional setups for all official tracks in Assetto Corsa Competizione. Each track has multiple setup variations for different car classes and conditions.</p> | |
| </div> | |
| <!-- Filter Controls --> | |
| <div class="mb-8"> | |
| <div class="flex flex-wrap gap-2 mb-6"> | |
| <button class="filter-active px-4 py-2 rounded-full text-sm font-medium transition">All Tracks</button> | |
| <button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-full text-sm font-medium transition">Europe</button> | |
| <button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-full text-sm font-medium transition">America</button> | |
| <button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-full text-sm font-medium transition">Asia</button> | |
| </div> | |
| <div class="relative"> | |
| <i data-feather="search" class="absolute left-3 top-3 text-gray-400"></i> | |
| <input type="text" placeholder="Search tracks..." class="bg-gray-800 w-full pl-10 pr-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-red-500"> | |
| </div> | |
| </div> | |
| <!-- Tracks Grid --> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <!-- Track Card 1 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300"> | |
| <div class="relative"> | |
| <img src="http://static.photos/travel/640x360/1" alt="Nürburgring" class="w-full h-48 object-cover"> | |
| <span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">Germany</span> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-2"> | |
| <h3 class="text-xl font-bold">Nürburgring</h3> | |
| <span class="text-yellow-400 text-sm flex items-center"> | |
| <i data-feather="star" class="w-4 h-4 mr-1"></i> 4.8 | |
| </span> | |
| </div> | |
| <p class="text-gray-300 text-sm mb-4">The legendary Green Hell - 20.8km of challenging corners</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-gray-400">217 setups</span> | |
| <button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition"> | |
| View | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Track Card 2 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300"> | |
| <div class="relative"> | |
| <img src="http://static.photos/travel/640x360/2" alt="Spa-Francorchamps" class="w-full h-48 object-cover"> | |
| <span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">Belgium</span> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-2"> | |
| <h3 class="text-xl font-bold">Spa-Francorchamps</h3> | |
| <span class="text-yellow-400 text-sm flex items-center"> | |
| <i data-feather="star" class="w-4 h-4 mr-1"></i> 4.7 | |
| </span> | |
| </div> | |
| <p class="text-gray-300 text-sm mb-4">Ardennes rollercoaster with famous Eau Rouge</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-gray-400">184 setups</span> | |
| <button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition"> | |
| View | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Track Card 3 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300"> | |
| <div class="relative"> | |
| <img src="http://static.photos/travel/640x360/3" alt="Monza" class="w-full h-48 object-cover"> | |
| <span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">Italy</span> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-2"> | |
| <h3 class="text-xl font-bold">Monza</h3> | |
| <span class="text-yellow-400 text-sm flex items-center"> | |
| <i data-feather="star" class="w-4 h-4 mr-1"></i> 4.6 | |
| </span> | |
| </div> | |
| <p class="text-gray-300 text-sm mb-4">Temple of speed with long straights and heavy braking zones</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-gray-400">156 setups</span> | |
| <button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition"> | |
| View | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Track Card 4 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300"> | |
| <div class="relative"> | |
| <img src="http://static.photos/travel/640x360/4" alt="Barcelona" class="w-full h-48 object-cover"> | |
| <span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">Spain</span> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-2"> | |
| <h3 class="text-xl font-bold">Barcelona</h3> | |
| <span class="text-yellow-400 text-sm flex items-center"> | |
| <i data-feather="star" class="w-4 h-4 mr-1"></i> 4.5 | |
| </span> | |
| </div> | |
| <p class="text-gray-300 text-sm mb-4">Technical circuit with demanding corner sequences</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-gray-400">132 setups</span> | |
| <button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition"> | |
| View | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Track Card 5 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300"> | |
| <div class="relative"> | |
| <img src="http://static.photos/travel/640x360/5" alt="Silverstone" class="w-full h-48 object-cover"> | |
| <span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">UK</span> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-2"> | |
| <h3 class="text-xl font-bold">Silverstone</h3> | |
| <span class="text-yellow-400 text-sm flex items-center"> | |
| <i data-feather="star" class="w-4 h-4 mr-1"></i> 4.6 | |
| </span> | |
| </div> | |
| <p class="text-gray-300 text-sm mb-4">Historic British track with fast, flowing sections</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-gray-400">148 setups</span> | |
| <button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition"> | |
| View | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Track Card 6 --> | |
| <div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300"> | |
| <div class="relative"> | |
| <img src="http://static.photos/travel/640x360/6" alt="Hungaroring" class="w-full h-48 object-cover"> | |
| <span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">Hungary</span> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-start mb-2"> | |
| <h3 class="text-xl font-bold">Hungaroring</h3> | |
| <span class="text-yellow-400 text-sm flex items-center"> | |
| <i data-feather="star" class="w-4 h-4 mr-1"></i> 4.4 | |
| </span> | |
| </div> | |
| <p class="text-gray-300 text-sm mb-4">Twisting circuit that demands technical precision</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm text-gray-400">119 setups</span> | |
| <button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition"> | |
| View | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Pagination --> | |
| <div class="mt-12 flex justify-center"> | |
| <nav class="flex items-center space-x-2"> | |
| <button class="px-3 py-1 rounded-lg bg-gray-800 text-gray-300 hover:bg-gray-700 transition"> | |
| <i data-feather="chevron-left" class="w-4 h-4"></i> | |
| </button> | |
| <button class="px-3 py-1 rounded-lg bg-red-600 text-white">1</button> | |
| <button class="px-3 py-1 rounded-lg bg-gray-800 text-gray-300 hover:bg-gray-700 transition">2</button> | |
| <button class="px-3 py-1 rounded-lg bg-gray-800 text-gray-300 hover:bg-gray-700 transition">3</button> | |
| <button class="px-3 py-1 rounded-lg bg-gray-800 text-gray-300 hover:bg-gray-700 transition">4</button> | |
| <button class="px-3 py-1 rounded-lg bg-gray-800 text-gray-300 hover:bg-gray-700 transition"> | |
| <i data-feather="chevron-right" class="w-4 h-4"></i> | |
| </button> | |
| </nav> | |
| </div> | |
| </main> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 py-12 px-4 border-t border-gray-800"> | |
| <div class="container mx-auto"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <div class="mb-6 md:mb-0"> | |
| <div class="flex items-center"> | |
| <i data-feather="flag" class="w-6 h-6 text-red-500 mr-2"></i> | |
| <span class="text-lg font-bold">Racer's Edge</span> | |
| </div> | |
| <p class="text-gray-400 mt-2">The ultimate setup resource for ACC</p> | |
| </div> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="twitter" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="youtube" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="discord" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="github" class="w-5 h-5"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-8 pt-8 text-center"> | |
| <p class="text-gray-400 text-sm">© 2023 Racer's Edge. All setups are community-contributed and not affiliated with Kunos Simulazioni.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| </div> | |
| <script> | |
| // Initialize feather icons | |
| document.addEventListener('DOMContentLoaded', function() { | |
| feather.replace(); | |
| }); | |
| </script> | |
| </body> | |
| </html> |