Spaces:
Running
Running
IT DOSNT WORK
Browse files- cars.html +6 -5
- index.html +47 -44
- tracks.html +257 -0
cars.html
CHANGED
|
@@ -31,9 +31,9 @@
|
|
| 31 |
<nav class="hidden md:flex space-x-8">
|
| 32 |
<a href="index.html" class="hover:text-red-400 transition">Home</a>
|
| 33 |
<a href="cars.html" class="text-red-400">Cars</a>
|
| 34 |
-
<a href="
|
| 35 |
<a href="#" class="hover:text-red-400 transition">Community</a>
|
| 36 |
-
|
| 37 |
<button class="md:hidden">
|
| 38 |
<i data-feather="menu" class="w-6 h-6"></i>
|
| 39 |
</button>
|
|
@@ -290,10 +290,11 @@
|
|
| 290 |
</div>
|
| 291 |
</footer>
|
| 292 |
</div>
|
| 293 |
-
|
| 294 |
-
<script>
|
| 295 |
// Initialize feather icons
|
| 296 |
-
|
|
|
|
|
|
|
| 297 |
</script>
|
| 298 |
</body>
|
| 299 |
</html>
|
|
|
|
| 31 |
<nav class="hidden md:flex space-x-8">
|
| 32 |
<a href="index.html" class="hover:text-red-400 transition">Home</a>
|
| 33 |
<a href="cars.html" class="text-red-400">Cars</a>
|
| 34 |
+
<a href="tracks.html" class="hover:text-red-400 transition">Tracks</a>
|
| 35 |
<a href="#" class="hover:text-red-400 transition">Community</a>
|
| 36 |
+
</nav>
|
| 37 |
<button class="md:hidden">
|
| 38 |
<i data-feather="menu" class="w-6 h-6"></i>
|
| 39 |
</button>
|
|
|
|
| 290 |
</div>
|
| 291 |
</footer>
|
| 292 |
</div>
|
| 293 |
+
<script>
|
|
|
|
| 294 |
// Initialize feather icons
|
| 295 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 296 |
+
feather.replace();
|
| 297 |
+
});
|
| 298 |
</script>
|
| 299 |
</body>
|
| 300 |
</html>
|
index.html
CHANGED
|
@@ -31,11 +31,11 @@
|
|
| 31 |
<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>
|
| 32 |
</div>
|
| 33 |
<nav class="hidden md:flex space-x-8">
|
| 34 |
-
<a href="
|
| 35 |
-
<a href="
|
| 36 |
-
<a href="
|
| 37 |
<a href="#" class="hover:text-red-400 transition">Community</a>
|
| 38 |
-
|
| 39 |
<button class="md:hidden">
|
| 40 |
<i data-feather="menu" class="w-6 h-6"></i>
|
| 41 |
</button>
|
|
@@ -50,10 +50,10 @@
|
|
| 50 |
<h1 class="text-4xl md:text-6xl font-bold mb-6">Pro Setups for <span class="text-red-500">Assetto Corsa Competizione</span></h1>
|
| 51 |
<p class="text-xl mb-8">Optimized configurations for every GT2, GT3, and GT4 car across all tracks</p>
|
| 52 |
<div class="flex flex-col sm:flex-row justify-center gap-4">
|
| 53 |
-
<
|
| 54 |
Browse Cars
|
| 55 |
-
</
|
| 56 |
-
|
| 57 |
Popular Tracks
|
| 58 |
</button>
|
| 59 |
</div>
|
|
@@ -73,10 +73,10 @@
|
|
| 73 |
<div class="p-6">
|
| 74 |
<h3 class="text-xl font-bold mb-2">GT3 Class</h3>
|
| 75 |
<p class="text-gray-300 mb-4">Precision setups for all GT3 models including Ferrari 488, Porsche 911 GT3 R, and more.</p>
|
| 76 |
-
<
|
| 77 |
View 32 GT3 Cars
|
| 78 |
-
</
|
| 79 |
-
|
| 80 |
</div>
|
| 81 |
<!-- GT4 Card -->
|
| 82 |
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg setup-card transition duration-300">
|
|
@@ -84,10 +84,10 @@
|
|
| 84 |
<div class="p-6">
|
| 85 |
<h3 class="text-xl font-bold mb-2">GT4 Class</h3>
|
| 86 |
<p class="text-gray-300 mb-4">Competitive configurations for GT4 vehicles like the BMW M4 GT4 and Porsche 718 Cayman GT4.</p>
|
| 87 |
-
<
|
| 88 |
View 18 GT4 Cars
|
| 89 |
-
</
|
| 90 |
-
|
| 91 |
</div>
|
| 92 |
<!-- GT2 Card -->
|
| 93 |
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg setup-card transition duration-300">
|
|
@@ -95,10 +95,10 @@
|
|
| 95 |
<div class="p-6">
|
| 96 |
<h3 class="text-xl font-bold mb-2">GT2 Class</h2>
|
| 97 |
<p class="text-gray-300 mb-4">Specialized setups for GT2 machines including the Porsche 911 GT2 RS Clubsport.</p>
|
| 98 |
-
<
|
| 99 |
View 5 GT2 Cars
|
| 100 |
-
</
|
| 101 |
-
|
| 102 |
</div>
|
| 103 |
</div>
|
| 104 |
</section>
|
|
@@ -107,28 +107,28 @@
|
|
| 107 |
<section class="mb-20">
|
| 108 |
<h2 class="text-3xl font-bold mb-12 text-center">Popular Track Setups</h2>
|
| 109 |
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
|
| 110 |
-
<
|
| 111 |
<i data-feather="map-pin" class="w-10 h-10 mx-auto mb-4 text-red-500"></i>
|
| 112 |
<h3 class="font-bold mb-2">Nürburgring</h3>
|
| 113 |
<p class="text-sm text-gray-300">217 setup variations</p>
|
| 114 |
-
</
|
| 115 |
-
<
|
| 116 |
<i data-feather="map-pin" class="w-10 h-10 mx-auto mb-4 text-red-500"></i>
|
| 117 |
<h3 class="font-bold mb-2">Spa-Francorchamps</h3>
|
| 118 |
<p class="text-sm text-gray-300">184 setup variations</p>
|
| 119 |
-
</
|
| 120 |
-
<
|
| 121 |
<i data-feather="map-pin" class="w-10 h-10 mx-auto mb-4 text-red-500"></i>
|
| 122 |
<h3 class="font-bold mb-2">Monza</h3>
|
| 123 |
<p class="text-sm text-gray-300">156 setup variations</p>
|
| 124 |
-
</
|
| 125 |
-
<
|
| 126 |
<i data-feather="map-pin" class="w-10 h-10 mx-auto mb-4 text-red-500"></i>
|
| 127 |
<h3 class="font-bold mb-2">Barcelona</h3>
|
| 128 |
<p class="text-sm text-gray-300">132 setup variations</p>
|
| 129 |
-
</
|
| 130 |
</div>
|
| 131 |
-
|
| 132 |
|
| 133 |
<!-- Features Section -->
|
| 134 |
<section class="mb-20">
|
|
@@ -259,27 +259,30 @@
|
|
| 259 |
</div>
|
| 260 |
</footer>
|
| 261 |
</div>
|
| 262 |
-
|
| 263 |
-
<script>
|
| 264 |
// Initialize Vanta.js background
|
| 265 |
-
|
| 266 |
-
|
| 267 |
-
|
| 268 |
-
|
| 269 |
-
|
| 270 |
-
|
| 271 |
-
|
| 272 |
-
|
| 273 |
-
|
| 274 |
-
|
| 275 |
-
|
| 276 |
-
|
| 277 |
-
|
| 278 |
-
|
| 279 |
-
|
|
|
|
|
|
|
|
|
|
| 280 |
|
| 281 |
-
|
| 282 |
-
|
|
|
|
| 283 |
</script>
|
| 284 |
</body>
|
| 285 |
</html>
|
|
|
|
| 31 |
<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>
|
| 32 |
</div>
|
| 33 |
<nav class="hidden md:flex space-x-8">
|
| 34 |
+
<a href="index.html" class="hover:text-red-400 transition">Home</a>
|
| 35 |
+
<a href="cars.html" class="hover:text-red-400 transition">Cars</a>
|
| 36 |
+
<a href="tracks.html" class="hover:text-red-400 transition">Tracks</a>
|
| 37 |
<a href="#" class="hover:text-red-400 transition">Community</a>
|
| 38 |
+
</nav>
|
| 39 |
<button class="md:hidden">
|
| 40 |
<i data-feather="menu" class="w-6 h-6"></i>
|
| 41 |
</button>
|
|
|
|
| 50 |
<h1 class="text-4xl md:text-6xl font-bold mb-6">Pro Setups for <span class="text-red-500">Assetto Corsa Competizione</span></h1>
|
| 51 |
<p class="text-xl mb-8">Optimized configurations for every GT2, GT3, and GT4 car across all tracks</p>
|
| 52 |
<div class="flex flex-col sm:flex-row justify-center gap-4">
|
| 53 |
+
<a href="cars.html" class="bg-red-600 hover:bg-red-700 text-white px-8 py-3 rounded-lg font-medium transition transform hover:scale-105">
|
| 54 |
Browse Cars
|
| 55 |
+
</a>
|
| 56 |
+
<button class="bg-gray-800 hover:bg-gray-700 text-white px-8 py-3 rounded-lg font-medium transition transform hover:scale-105">
|
| 57 |
Popular Tracks
|
| 58 |
</button>
|
| 59 |
</div>
|
|
|
|
| 73 |
<div class="p-6">
|
| 74 |
<h3 class="text-xl font-bold mb-2">GT3 Class</h3>
|
| 75 |
<p class="text-gray-300 mb-4">Precision setups for all GT3 models including Ferrari 488, Porsche 911 GT3 R, and more.</p>
|
| 76 |
+
<a href="cars.html" class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">
|
| 77 |
View 32 GT3 Cars
|
| 78 |
+
</a>
|
| 79 |
+
</div>
|
| 80 |
</div>
|
| 81 |
<!-- GT4 Card -->
|
| 82 |
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg setup-card transition duration-300">
|
|
|
|
| 84 |
<div class="p-6">
|
| 85 |
<h3 class="text-xl font-bold mb-2">GT4 Class</h3>
|
| 86 |
<p class="text-gray-300 mb-4">Competitive configurations for GT4 vehicles like the BMW M4 GT4 and Porsche 718 Cayman GT4.</p>
|
| 87 |
+
<a href="cars.html" class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">
|
| 88 |
View 18 GT4 Cars
|
| 89 |
+
</a>
|
| 90 |
+
</div>
|
| 91 |
</div>
|
| 92 |
<!-- GT2 Card -->
|
| 93 |
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg setup-card transition duration-300">
|
|
|
|
| 95 |
<div class="p-6">
|
| 96 |
<h3 class="text-xl font-bold mb-2">GT2 Class</h2>
|
| 97 |
<p class="text-gray-300 mb-4">Specialized setups for GT2 machines including the Porsche 911 GT2 RS Clubsport.</p>
|
| 98 |
+
<a href="cars.html" class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-lg text-sm font-medium transition">
|
| 99 |
View 5 GT2 Cars
|
| 100 |
+
</a>
|
| 101 |
+
</div>
|
| 102 |
</div>
|
| 103 |
</div>
|
| 104 |
</section>
|
|
|
|
| 107 |
<section class="mb-20">
|
| 108 |
<h2 class="text-3xl font-bold mb-12 text-center">Popular Track Setups</h2>
|
| 109 |
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
|
| 110 |
+
<a href="tracks.html" class="bg-gray-800 rounded-lg p-6 text-center hover:bg-gray-700 transition cursor-pointer">
|
| 111 |
<i data-feather="map-pin" class="w-10 h-10 mx-auto mb-4 text-red-500"></i>
|
| 112 |
<h3 class="font-bold mb-2">Nürburgring</h3>
|
| 113 |
<p class="text-sm text-gray-300">217 setup variations</p>
|
| 114 |
+
</a>
|
| 115 |
+
<a href="tracks.html" class="bg-gray-800 rounded-lg p-6 text-center hover:bg-gray-700 transition cursor-pointer">
|
| 116 |
<i data-feather="map-pin" class="w-10 h-10 mx-auto mb-4 text-red-500"></i>
|
| 117 |
<h3 class="font-bold mb-2">Spa-Francorchamps</h3>
|
| 118 |
<p class="text-sm text-gray-300">184 setup variations</p>
|
| 119 |
+
</a>
|
| 120 |
+
<a href="tracks.html" class="bg-gray-800 rounded-lg p-6 text-center hover:bg-gray-700 transition cursor-pointer">
|
| 121 |
<i data-feather="map-pin" class="w-10 h-10 mx-auto mb-4 text-red-500"></i>
|
| 122 |
<h3 class="font-bold mb-2">Monza</h3>
|
| 123 |
<p class="text-sm text-gray-300">156 setup variations</p>
|
| 124 |
+
</a>
|
| 125 |
+
<a href="tracks.html" class="bg-gray-800 rounded-lg p-6 text-center hover:bg-gray-700 transition cursor-pointer">
|
| 126 |
<i data-feather="map-pin" class="w-10 h-10 mx-auto mb-4 text-red-500"></i>
|
| 127 |
<h3 class="font-bold mb-2">Barcelona</h3>
|
| 128 |
<p class="text-sm text-gray-300">132 setup variations</p>
|
| 129 |
+
</a>
|
| 130 |
</div>
|
| 131 |
+
</section>
|
| 132 |
|
| 133 |
<!-- Features Section -->
|
| 134 |
<section class="mb-20">
|
|
|
|
| 259 |
</div>
|
| 260 |
</footer>
|
| 261 |
</div>
|
| 262 |
+
<script>
|
|
|
|
| 263 |
// Initialize Vanta.js background
|
| 264 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 265 |
+
if (typeof VANTA !== 'undefined') {
|
| 266 |
+
VANTA.NET({
|
| 267 |
+
el: "#vanta-bg",
|
| 268 |
+
mouseControls: true,
|
| 269 |
+
touchControls: true,
|
| 270 |
+
gyroControls: false,
|
| 271 |
+
minHeight: 200.00,
|
| 272 |
+
minWidth: 200.00,
|
| 273 |
+
scale: 1.00,
|
| 274 |
+
scaleMobile: 1.00,
|
| 275 |
+
color: 0xff3333,
|
| 276 |
+
backgroundColor: 0x111111,
|
| 277 |
+
points: 10.00,
|
| 278 |
+
maxDistance: 20.00,
|
| 279 |
+
spacing: 15.00
|
| 280 |
+
});
|
| 281 |
+
}
|
| 282 |
|
| 283 |
+
// Initialize feather icons
|
| 284 |
+
feather.replace();
|
| 285 |
+
});
|
| 286 |
</script>
|
| 287 |
</body>
|
| 288 |
</html>
|
tracks.html
ADDED
|
@@ -0,0 +1,257 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Tracks - Racer's Edge</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 10 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 11 |
+
<style>
|
| 12 |
+
.track-card:hover {
|
| 13 |
+
transform: translateY(-5px);
|
| 14 |
+
box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.1), 0 10px 10px -5px rgba(239, 68, 68, 0.04);
|
| 15 |
+
}
|
| 16 |
+
.filter-active {
|
| 17 |
+
background-color: #ef4444;
|
| 18 |
+
color: white;
|
| 19 |
+
}
|
| 20 |
+
</style>
|
| 21 |
+
</head>
|
| 22 |
+
<body class="bg-gray-900 text-white">
|
| 23 |
+
<div class="min-h-screen flex flex-col">
|
| 24 |
+
<!-- Header -->
|
| 25 |
+
<header class="py-6 px-4 sm:px-6 lg:px-8 bg-black bg-opacity-70 backdrop-blur-sm">
|
| 26 |
+
<div class="flex justify-between items-center">
|
| 27 |
+
<div class="flex items-center">
|
| 28 |
+
<i data-feather="flag" class="w-8 h-8 text-red-500 mr-3"></i>
|
| 29 |
+
<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>
|
| 30 |
+
</div>
|
| 31 |
+
<nav class="hidden md:flex space-x-8">
|
| 32 |
+
<a href="index.html" class="hover:text-red-400 transition">Home</a>
|
| 33 |
+
<a href="cars.html" class="hover:text-red-400 transition">Cars</a>
|
| 34 |
+
<a href="tracks.html" class="text-red-400">Tracks</a>
|
| 35 |
+
<a href="#" class="hover:text-red-400 transition">Community</a>
|
| 36 |
+
</nav>
|
| 37 |
+
<button class="md:hidden">
|
| 38 |
+
<i data-feather="menu" class="w-6 h-6"></i>
|
| 39 |
+
</button>
|
| 40 |
+
</div>
|
| 41 |
+
</header>
|
| 42 |
+
|
| 43 |
+
<!-- Main Content -->
|
| 44 |
+
<main class="container mx-auto px-4 py-16 flex-grow">
|
| 45 |
+
<div class="mb-12">
|
| 46 |
+
<h1 class="text-4xl font-bold mb-6">Available Tracks</h1>
|
| 47 |
+
<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>
|
| 48 |
+
</div>
|
| 49 |
+
|
| 50 |
+
<!-- Filter Controls -->
|
| 51 |
+
<div class="mb-8">
|
| 52 |
+
<div class="flex flex-wrap gap-2 mb-6">
|
| 53 |
+
<button class="filter-active px-4 py-2 rounded-full text-sm font-medium transition">All Tracks</button>
|
| 54 |
+
<button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-full text-sm font-medium transition">Europe</button>
|
| 55 |
+
<button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-full text-sm font-medium transition">America</button>
|
| 56 |
+
<button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-full text-sm font-medium transition">Asia</button>
|
| 57 |
+
</div>
|
| 58 |
+
<div class="relative">
|
| 59 |
+
<i data-feather="search" class="absolute left-3 top-3 text-gray-400"></i>
|
| 60 |
+
<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">
|
| 61 |
+
</div>
|
| 62 |
+
</div>
|
| 63 |
+
|
| 64 |
+
<!-- Tracks Grid -->
|
| 65 |
+
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
|
| 66 |
+
<!-- Track Card 1 -->
|
| 67 |
+
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300">
|
| 68 |
+
<div class="relative">
|
| 69 |
+
<img src="http://static.photos/travel/640x360/1" alt="Nürburgring" class="w-full h-48 object-cover">
|
| 70 |
+
<span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">Germany</span>
|
| 71 |
+
</div>
|
| 72 |
+
<div class="p-6">
|
| 73 |
+
<div class="flex justify-between items-start mb-2">
|
| 74 |
+
<h3 class="text-xl font-bold">Nürburgring</h3>
|
| 75 |
+
<span class="text-yellow-400 text-sm flex items-center">
|
| 76 |
+
<i data-feather="star" class="w-4 h-4 mr-1"></i> 4.8
|
| 77 |
+
</span>
|
| 78 |
+
</div>
|
| 79 |
+
<p class="text-gray-300 text-sm mb-4">The legendary Green Hell - 20.8km of challenging corners</p>
|
| 80 |
+
<div class="flex justify-between items-center">
|
| 81 |
+
<span class="text-sm text-gray-400">217 setups</span>
|
| 82 |
+
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition">
|
| 83 |
+
View
|
| 84 |
+
</button>
|
| 85 |
+
</div>
|
| 86 |
+
</div>
|
| 87 |
+
</div>
|
| 88 |
+
<!-- Track Card 2 -->
|
| 89 |
+
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300">
|
| 90 |
+
<div class="relative">
|
| 91 |
+
<img src="http://static.photos/travel/640x360/2" alt="Spa-Francorchamps" class="w-full h-48 object-cover">
|
| 92 |
+
<span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">Belgium</span>
|
| 93 |
+
</div>
|
| 94 |
+
<div class="p-6">
|
| 95 |
+
<div class="flex justify-between items-start mb-2">
|
| 96 |
+
<h3 class="text-xl font-bold">Spa-Francorchamps</h3>
|
| 97 |
+
<span class="text-yellow-400 text-sm flex items-center">
|
| 98 |
+
<i data-feather="star" class="w-4 h-4 mr-1"></i> 4.7
|
| 99 |
+
</span>
|
| 100 |
+
</div>
|
| 101 |
+
<p class="text-gray-300 text-sm mb-4">Ardennes rollercoaster with famous Eau Rouge</p>
|
| 102 |
+
<div class="flex justify-between items-center">
|
| 103 |
+
<span class="text-sm text-gray-400">184 setups</span>
|
| 104 |
+
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition">
|
| 105 |
+
View
|
| 106 |
+
</button>
|
| 107 |
+
</div>
|
| 108 |
+
</div>
|
| 109 |
+
</div>
|
| 110 |
+
<!-- Track Card 3 -->
|
| 111 |
+
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300">
|
| 112 |
+
<div class="relative">
|
| 113 |
+
<img src="http://static.photos/travel/640x360/3" alt="Monza" class="w-full h-48 object-cover">
|
| 114 |
+
<span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">Italy</span>
|
| 115 |
+
</div>
|
| 116 |
+
<div class="p-6">
|
| 117 |
+
<div class="flex justify-between items-start mb-2">
|
| 118 |
+
<h3 class="text-xl font-bold">Monza</h3>
|
| 119 |
+
<span class="text-yellow-400 text-sm flex items-center">
|
| 120 |
+
<i data-feather="star" class="w-4 h-4 mr-1"></i> 4.6
|
| 121 |
+
</span>
|
| 122 |
+
</div>
|
| 123 |
+
<p class="text-gray-300 text-sm mb-4">Temple of speed with long straights and heavy braking zones</p>
|
| 124 |
+
<div class="flex justify-between items-center">
|
| 125 |
+
<span class="text-sm text-gray-400">156 setups</span>
|
| 126 |
+
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition">
|
| 127 |
+
View
|
| 128 |
+
</button>
|
| 129 |
+
</div>
|
| 130 |
+
</div>
|
| 131 |
+
</div>
|
| 132 |
+
<!-- Track Card 4 -->
|
| 133 |
+
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300">
|
| 134 |
+
<div class="relative">
|
| 135 |
+
<img src="http://static.photos/travel/640x360/4" alt="Barcelona" class="w-full h-48 object-cover">
|
| 136 |
+
<span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">Spain</span>
|
| 137 |
+
</div>
|
| 138 |
+
<div class="p-6">
|
| 139 |
+
<div class="flex justify-between items-start mb-2">
|
| 140 |
+
<h3 class="text-xl font-bold">Barcelona</h3>
|
| 141 |
+
<span class="text-yellow-400 text-sm flex items-center">
|
| 142 |
+
<i data-feather="star" class="w-4 h-4 mr-1"></i> 4.5
|
| 143 |
+
</span>
|
| 144 |
+
</div>
|
| 145 |
+
<p class="text-gray-300 text-sm mb-4">Technical circuit with demanding corner sequences</p>
|
| 146 |
+
<div class="flex justify-between items-center">
|
| 147 |
+
<span class="text-sm text-gray-400">132 setups</span>
|
| 148 |
+
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition">
|
| 149 |
+
View
|
| 150 |
+
</button>
|
| 151 |
+
</div>
|
| 152 |
+
</div>
|
| 153 |
+
</div>
|
| 154 |
+
<!-- Track Card 5 -->
|
| 155 |
+
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300">
|
| 156 |
+
<div class="relative">
|
| 157 |
+
<img src="http://static.photos/travel/640x360/5" alt="Silverstone" class="w-full h-48 object-cover">
|
| 158 |
+
<span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">UK</span>
|
| 159 |
+
</div>
|
| 160 |
+
<div class="p-6">
|
| 161 |
+
<div class="flex justify-between items-start mb-2">
|
| 162 |
+
<h3 class="text-xl font-bold">Silverstone</h3>
|
| 163 |
+
<span class="text-yellow-400 text-sm flex items-center">
|
| 164 |
+
<i data-feather="star" class="w-4 h-4 mr-1"></i> 4.6
|
| 165 |
+
</span>
|
| 166 |
+
</div>
|
| 167 |
+
<p class="text-gray-300 text-sm mb-4">Historic British track with fast, flowing sections</p>
|
| 168 |
+
<div class="flex justify-between items-center">
|
| 169 |
+
<span class="text-sm text-gray-400">148 setups</span>
|
| 170 |
+
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition">
|
| 171 |
+
View
|
| 172 |
+
</button>
|
| 173 |
+
</div>
|
| 174 |
+
</div>
|
| 175 |
+
</div>
|
| 176 |
+
<!-- Track Card 6 -->
|
| 177 |
+
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg track-card transition duration-300">
|
| 178 |
+
<div class="relative">
|
| 179 |
+
<img src="http://static.photos/travel/640x360/6" alt="Hungaroring" class="w-full h-48 object-cover">
|
| 180 |
+
<span class="absolute top-3 right-3 bg-red-600 text-white text-xs px-2 py-1 rounded-full">Hungary</span>
|
| 181 |
+
</div>
|
| 182 |
+
<div class="p-6">
|
| 183 |
+
<div class="flex justify-between items-start mb-2">
|
| 184 |
+
<h3 class="text-xl font-bold">Hungaroring</h3>
|
| 185 |
+
<span class="text-yellow-400 text-sm flex items-center">
|
| 186 |
+
<i data-feather="star" class="w-4 h-4 mr-1"></i> 4.4
|
| 187 |
+
</span>
|
| 188 |
+
</div>
|
| 189 |
+
<p class="text-gray-300 text-sm mb-4">Twisting circuit that demands technical precision</p>
|
| 190 |
+
<div class="flex justify-between items-center">
|
| 191 |
+
<span class="text-sm text-gray-400">119 setups</span>
|
| 192 |
+
<button class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded-lg text-sm font-medium transition">
|
| 193 |
+
View
|
| 194 |
+
</button>
|
| 195 |
+
</div>
|
| 196 |
+
</div>
|
| 197 |
+
</div>
|
| 198 |
+
</div>
|
| 199 |
+
|
| 200 |
+
<!-- Pagination -->
|
| 201 |
+
<div class="mt-12 flex justify-center">
|
| 202 |
+
<nav class="flex items-center space-x-2">
|
| 203 |
+
<button class="px-3 py-1 rounded-lg bg-gray-800 text-gray-300 hover:bg-gray-700 transition">
|
| 204 |
+
<i data-feather="chevron-left" class="w-4 h-4"></i>
|
| 205 |
+
</button>
|
| 206 |
+
<button class="px-3 py-1 rounded-lg bg-red-600 text-white">1</button>
|
| 207 |
+
<button class="px-3 py-1 rounded-lg bg-gray-800 text-gray-300 hover:bg-gray-700 transition">2</button>
|
| 208 |
+
<button class="px-3 py-1 rounded-lg bg-gray-800 text-gray-300 hover:bg-gray-700 transition">3</button>
|
| 209 |
+
<button class="px-3 py-1 rounded-lg bg-gray-800 text-gray-300 hover:bg-gray-700 transition">4</button>
|
| 210 |
+
<button class="px-3 py-1 rounded-lg bg-gray-800 text-gray-300 hover:bg-gray-700 transition">
|
| 211 |
+
<i data-feather="chevron-right" class="w-4 h-4"></i>
|
| 212 |
+
</button>
|
| 213 |
+
</nav>
|
| 214 |
+
</div>
|
| 215 |
+
</main>
|
| 216 |
+
|
| 217 |
+
<!-- Footer -->
|
| 218 |
+
<footer class="bg-gray-900 py-12 px-4 border-t border-gray-800">
|
| 219 |
+
<div class="container mx-auto">
|
| 220 |
+
<div class="flex flex-col md:flex-row justify-between items-center">
|
| 221 |
+
<div class="mb-6 md:mb-0">
|
| 222 |
+
<div class="flex items-center">
|
| 223 |
+
<i data-feather="flag" class="w-6 h-6 text-red-500 mr-2"></i>
|
| 224 |
+
<span class="text-lg font-bold">Racer's Edge</span>
|
| 225 |
+
</div>
|
| 226 |
+
<p class="text-gray-400 mt-2">The ultimate setup resource for ACC</p>
|
| 227 |
+
</div>
|
| 228 |
+
<div class="flex space-x-6">
|
| 229 |
+
<a href="#" class="text-gray-400 hover:text-white transition">
|
| 230 |
+
<i data-feather="twitter" class="w-5 h-5"></i>
|
| 231 |
+
</a>
|
| 232 |
+
<a href="#" class="text-gray-400 hover:text-white transition">
|
| 233 |
+
<i data-feather="youtube" class="w-5 h-5"></i>
|
| 234 |
+
</a>
|
| 235 |
+
<a href="#" class="text-gray-400 hover:text-white transition">
|
| 236 |
+
<i data-feather="discord" class="w-5 h-5"></i>
|
| 237 |
+
</a>
|
| 238 |
+
<a href="#" class="text-gray-400 hover:text-white transition">
|
| 239 |
+
<i data-feather="github" class="w-5 h-5"></i>
|
| 240 |
+
</a>
|
| 241 |
+
</div>
|
| 242 |
+
</div>
|
| 243 |
+
<div class="border-t border-gray-800 mt-8 pt-8 text-center">
|
| 244 |
+
<p class="text-gray-400 text-sm">© 2023 Racer's Edge. All setups are community-contributed and not affiliated with Kunos Simulazioni.</p>
|
| 245 |
+
</div>
|
| 246 |
+
</div>
|
| 247 |
+
</footer>
|
| 248 |
+
</div>
|
| 249 |
+
|
| 250 |
+
<script>
|
| 251 |
+
// Initialize feather icons
|
| 252 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 253 |
+
feather.replace();
|
| 254 |
+
});
|
| 255 |
+
</script>
|
| 256 |
+
</body>
|
| 257 |
+
</html>
|