File size: 15,428 Bytes
1db968d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fca9012
 
1db968d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<!DOCTYPE html>
<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>