tdub21's picture
Have it so you pick the car and teach with deep down boxes and this app it dedicated to the game assetto corsa competition for Xbox so you only need the cards and tracks that are on the game
de39af1 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Racer's Edge: Setup Wizard Pro</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>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<style>
.setup-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);
}
.racetrack-bg {
background-image: url('https://images.unsplash.com/photo-1544829099-b9a0c07fad1e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80');
background-size: cover;
background-position: center;
}
</style>
</head>
<body class="bg-gray-900 text-white" id="vanta-bg">
<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="hover:text-red-400 transition">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>
<!-- Hero Section -->
<section class="racetrack-bg flex-grow flex items-center relative py-16">
<div class="absolute inset-0 bg-black bg-opacity-50"></div>
<div class="container mx-auto px-4 relative z-10">
<div class="max-w-3xl mx-auto text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Pro Setups for <span class="text-red-500">Assetto Corsa Competizione</span></h1>
<p class="text-xl mb-8">Optimized configurations for every GT2, GT3, and GT4 car across all tracks</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<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">
Browse Cars
</a>
<a href="tracks.html" class="bg-gray-800 hover:bg-gray-700 text-white px-8 py-3 rounded-lg font-medium transition transform hover:scale-105">
Popular Tracks
</a>
</div>
</div>
</div>
</section>
<!-- Main Content -->
<main class="container mx-auto px-4 py-16">
<!-- Car Classes Section -->
<section class="mb-20">
<h2 class="text-3xl font-bold mb-12 text-center">Available Car Classes</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- GT3 Card -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg setup-card transition duration-300">
<img src="http://static.photos/automotive/640x360/1" alt="GT3 Car" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">GT3 Class</h3>
<p class="text-gray-300 mb-4">Precision setups for GT3 models including Aston Martin Vantage, Audi R8 LMS, and BMW M4 GT3.</p>
<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">
View GT3 Cars
</a>
</div>
</div>
<!-- GT4 Card -->
<div class="bg-gray-800 rounded-xl overflow-hidden shadow-lg setup-card transition duration-300">
<img src="http://static.photos/automotive/640x360/2" alt="GT4 Car" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">GT4 Class</h3>
<p class="text-gray-300 mb-4">Competitive configurations for GT4 vehicles like the Aston Martin Vantage GT4 and Porsche 718 Cayman GT4.</p>
<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">
View GT4 Cars
</a>
</div>
</div>
</div>
</section>
<!-- Featured Tracks -->
<section class="mb-20">
<h2 class="text-3xl font-bold mb-12 text-center">Popular Tracks</h2>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="tracks.html" class="bg-gray-800 rounded-lg p-6 text-center hover:bg-gray-700 transition cursor-pointer">
<i data-feather="map-pin" class="w-10 h-10 mx-auto mb-4 text-red-500"></i>
<h3 class="font-bold mb-2">Nürburgring</h3>
<p class="text-sm text-gray-300">217 setups</p>
</a>
<a href="tracks.html" class="bg-gray-800 rounded-lg p-6 text-center hover:bg-gray-700 transition cursor-pointer">
<i data-feather="map-pin" class="w-10 h-10 mx-auto mb-4 text-red-500"></i>
<h3 class="font-bold mb-2">Spa-Francorchamps</h3>
<p class="text-sm text-gray-300">184 setups</p>
</a>
</div>
</section>
</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 flex flex-col md:flex-row justify-between">
<div class="grid grid-cols-2 md:grid-cols-3 gap-8 mb-6 md:mb-0">
<div>
<h4 class="text-sm font-semibold mb-4">PRODUCT</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">FAQ</a></li>
</ul>
</div>
<div>
<h4 class="text-sm font-semibold mb-4">COMPANY</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Careers</a></li>
</ul>
</div>
<div>
<h4 class="text-sm font-semibold mb-4">LEGAL</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Privacy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Terms</a></li>
<li><a href="#" class="text-gray-400 hover:text-white text-sm transition">Licenses</a></li>
</ul>
</div>
</div>
<div class="md:w-1/3">
<h4 class="text-sm font-semibold mb-4">SUBSCRIBE TO NEWSLETTER</h4>
<p class="text-gray-400 text-sm mb-4">Get the latest setup tips and racing news.</p>
<div class="flex">
<input type="email" placeholder="Your email" class="bg-gray-800 text-white px-4 py-2 rounded-l-lg focus:outline-none focus:ring-2 focus:ring-red-500 w-full">
<button class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-r-lg transition">
<i data-feather="send" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
</div>
</footer>
</div>
<script>
// Initialize feather icons
document.addEventListener('DOMContentLoaded', function() {
feather.replace();
});
</script>
</body>
</html>