cob05's picture
undefined - Initial Deployment
ea9a81c verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AutoConnect - Social Network for Car Enthusiasts</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700&family=Racing+Sans+One&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'carbg': '#0a0a0a',
'cardark': '#121212',
'carbrand': '#ff3e00',
'carbrand-dark': '#cc3200',
'carsecondary': '#00a8ff',
'carlight': '#e0e0e0'
},
fontFamily: {
'heading': ['Racing Sans One', 'sans-serif'],
'body': ['Exo 2', 'sans-serif']
}
}
}
}
</script>
<style>
body {
background: linear-gradient(to bottom, #0a0a0a, #121212);
min-height: 100vh;
color: #e0e0e0;
font-family: 'Exo 2', sans-serif;
}
.card-hover {
transition: all 0.3s ease;
transform: translateY(0);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(255, 62, 0, 0.2);
}
.post-image {
height: 300px;
object-fit: cover;
transition: transform 0.3s ease;
}
.post-image:hover {
transform: scale(1.03);
}
.brand-gradient {
background: linear-gradient(45deg, #ff3e00, #ff7b00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-link {
position: relative;
padding-bottom: 5px;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: #ff3e00;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.btn-primary {
background: linear-gradient(45deg, #ff3e00, #ff7b00);
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(255, 62, 0, 0.4);
}
.trending-car {
transition: all 0.3s ease;
}
.trending-car:hover {
transform: scale(1.05);
}
.like-btn:hover {
color: #ff3e00;
}
.comment-btn:hover {
color: #00a8ff;
}
.share-btn:hover {
color: #00ff9d;
}
.speedometer {
position: relative;
width: 100px;
height: 100px;
border-radius: 50%;
background: #121212;
border: 3px solid #ff3e00;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.speedometer::before {
content: '';
position: absolute;
width: 50%;
height: 3px;
background: #ff3e00;
transform-origin: right;
transform: rotate(45deg);
top: 50%;
left: 0;
}
.speedometer::after {
content: '';
position: absolute;
width: 50%;
height: 3px;
background: #ff3e00;
transform-origin: right;
transform: rotate(-45deg);
top: 50%;
left: 0;
}
.speed-value {
position: relative;
z-index: 2;
font-weight: bold;
font-size: 1.2rem;
color: #ff3e00;
}
.speed-label {
position: absolute;
bottom: 10px;
font-size: 0.7rem;
color: #e0e0e0;
}
.notification-dot {
position: absolute;
top: -5px;
right: -5px;
width: 20px;
height: 20px;
border-radius: 50%;
background: #ff3e00;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.7rem;
font-weight: bold;
}
.search-box {
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.1);
transition: all 0.3s ease;
}
.search-box:focus {
background: rgba(255,255,255,0.15);
border: 1px solid #ff3e00;
box-shadow: 0 0 10px rgba(255,62,0,0.3);
}
.trending-card {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
transition: all 0.3s ease;
}
.trending-card:hover {
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,62,0,0.3);
}
</style>
</head>
<body class="bg-carbg">
<!-- Navigation Bar -->
<nav class="bg-cardark border-b border-gray-800 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="#" class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i class="fas fa-car text-carbrand text-3xl mr-2"></i>
<span class="text-2xl font-heading text-white">AUTO<span class="brand-gradient">CONNECT</span></span>
</div>
</a>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#" class="nav-link text-white px-3 py-2 text-sm font-medium">Home</a>
<a href="#" class="nav-link text-gray-400 hover:text-white px-3 py-2 text-sm font-medium">Explore</a>
<a href="#" class="nav-link text-gray-400 hover:text-white px-3 py-2 text-sm font-medium">Garage</a>
<a href="#" class="nav-link text-gray-400 hover:text-white px-3 py-2 text-sm font-medium">Events</a>
<a href="#" class="nav-link text-gray-400 hover:text-white px-3 py-2 text-sm font-medium">Groups</a>
</div>
</div>
<div class="flex items-center">
<div class="flex-shrink-0 relative mr-4">
<div class="relative">
<input type="text" placeholder="Search cars, parts, users..." class="search-box rounded-full py-2 px-4 text-white w-64 focus:outline-none">
<i class="fas fa-search absolute right-3 top-2.5 text-gray-400"></i>
</div>
</div>
<div class="flex items-center">
<div class="flex-shrink-0 relative mr-4">
<button class="relative p-1 text-gray-400 hover:text-white">
<i class="fas fa-bell text-xl"></i>
<span class="notification-dot">3</span>
</button>
</div>
<div class="flex-shrink-0 relative mr-4">
<button class="relative p-1 text-gray-400 hover:text-white">
<i class="fas fa-envelope text-xl"></i>
<span class="notification-dot">5</span>
</button>
</div>
<div class="ml-3 relative">
<div class="flex items-center">
<img class="h-8 w-8 rounded-full object-cover" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Profile">
<span class="ml-2 text-white text-sm hidden md:block">Mike Johnson</span>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div class="flex flex-col lg:flex-row gap-8">
<!-- Left Sidebar -->
<div class="lg:w-1/4 flex flex-col gap-6">
<!-- User Profile Card -->
<div class="bg-cardark rounded-xl p-6 shadow-lg">
<div class="flex flex-col items-center">
<img class="h-24 w-24 rounded-full object-cover border-2 border-carbrand" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Profile">
<h3 class="mt-4 text-xl font-bold text-white">Mike Johnson</h3>
<p class="text-gray-400 text-sm">@speedracer</p>
<div class="mt-4 flex justify-center gap-4">
<div class="text-center">
<p class="text-white font-bold">24</p>
<p class="text-gray-400 text-xs">Posts</p>
</div>
<div class="text-center">
<p class="text-white font-bold">187</p>
<p class="text-gray-400 text-xs">Followers</p>
</div>
<div class="text-center">
<p class="text-white font-bold">56</p>
<p class="text-gray-400 text-xs">Following</p>
</div>
</div>
<div class="mt-6 w-full">
<button class="btn-primary w-full py-2 rounded-lg font-bold text-white">Edit Profile</button>
</div>
</div>
</div>
<!-- Trending Cars -->
<div class="bg-cardark rounded-xl p-6 shadow-lg">
<h3 class="text-lg font-bold text-white mb-4">Trending Cars</h3>
<div class="space-y-4">
<div class="trending-card rounded-lg p-3 flex items-center cursor-pointer">
<div class="bg-gray-700 rounded-lg w-16 h-16 flex items-center justify-center">
<i class="fas fa-car text-carbrand text-2xl"></i>
</div>
<div class="ml-4">
<h4 class="text-white font-medium">Porsche 911 GT3</h4>
<p class="text-gray-400 text-sm">+245 posts today</p>
</div>
</div>
<div class="trending-card rounded-lg p-3 flex items-center cursor-pointer">
<div class="bg-gray-700 rounded-lg w-16 h-16 flex items-center justify-center">
<i class="fas fa-car text-carbrand text-2xl"></i>
</div>
<div class="ml-4">
<h4 class="text-white font-medium">Toyota Supra MK4</h4>
<p class="text-gray-400 text-sm">+189 posts today</p>
</div>
</div>
<div class="trending-card rounded-lg p-3 flex items-center cursor-pointer">
<div class="bg-gray-700 rounded-lg w-16 h-16 flex items-center justify-center">
<i class="fas fa-car text-carbrand text-2xl"></i>
</div>
<div class="ml-4">
<h4 class="text-white font-medium">Ford Mustang GT</h4>
<p class="text-gray-400 text-sm">+167 posts today</p>
</div>
</div>
<div class="trending-card rounded-lg p-3 flex items-center cursor-pointer">
<div class="bg-gray-700 rounded-lg w-16 h-16 flex items-center justify-center">
<i class="fas fa-car text-carbrand text-2xl"></i>
</div>
<div class="ml-4">
<h4 class="text-white font-medium">BMW M3 GTR</h4>
<p class="text-gray-400 text-sm">+132 posts today</p>
</div>
</div>
</div>
<button class="mt-4 w-full py-2 rounded-lg border border-carbrand text-carbrand font-bold hover:bg-carbrand hover:text-white transition">View All</button>
</div>
<!-- Upcoming Events -->
<div class="bg-cardark rounded-xl p-6 shadow-lg">
<h3 class="text-lg font-bold text-white mb-4">Upcoming Events</h3>
<div class="space-y-4">
<div class="bg-gray-800 rounded-lg p-3">
<div class="flex justify-between items-center">
<span class="text-carbrand font-bold">JUL 28</span>
<span class="text-gray-400 text-sm">Los Angeles</span>
</div>
<h4 class="text-white font-medium mt-2">Supercar Sunday Meetup</h4>
<p class="text-gray-400 text-sm mt-1">8:00 AM - 12:00 PM</p>
<div class="mt-3 flex items-center">
<div class="flex -space-x-2">
<img class="w-8 h-8 rounded-full border-2 border-cardark" src="https://randomuser.me/api/portraits/men/41.jpg" alt="">
<img class="w-8 h-8 rounded-full border-2 border-cardark" src="https://randomuser.me/api/portraits/women/32.jpg" alt="">
<img class="w-8 h-8 rounded-full border-2 border-cardark" src="https://randomuser.me/api/portraits/men/22.jpg" alt="">
</div>
<span class="ml-2 text-gray-400 text-sm">+42 attending</span>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-3">
<div class="flex justify-between items-center">
<span class="text-carbrand font-bold">AUG 12</span>
<span class="text-gray-400 text-sm">Las Vegas</span>
</div>
<h4 class="text-white font-medium mt-2">Drag Racing Championship</h4>
<p class="text-gray-400 text-sm mt-1">3:00 PM - 10:00 PM</p>
<div class="mt-3 flex items-center">
<div class="flex -space-x-2">
<img class="w-8 h-8 rounded-full border-2 border-cardark" src="https://randomuser.me/api/portraits/men/45.jpg" alt="">
<img class="w-8 h-8 rounded-full border-2 border-cardark" src="https://randomuser.me/api/portraits/men/28.jpg" alt="">
<img class="w-8 h-8 rounded-full border-2 border-cardark" src="https://randomuser.me/api/portraits/women/45.jpg" alt="">
</div>
<span class="ml-2 text-gray-400 text-sm">+68 attending</span>
</div>
</div>
</div>
</div>
</div>
<!-- Main Feed -->
<div class="lg:w-2/4 flex flex-col gap-6">
<!-- Create Post -->
<div class="bg-cardark rounded-xl p-6 shadow-lg">
<div class="flex">
<img class="h-12 w-12 rounded-full object-cover" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Profile">
<input type="text" placeholder="What's in your garage today?" class="ml-4 bg-gray-800 rounded-full px-4 py-2 text-white w-full focus:outline-none focus:ring-1 focus:ring-carbrand">
</div>
<div class="flex justify-between mt-4">
<div class="flex gap-4">
<button class="flex items-center text-gray-400 hover:text-carbrand">
<i class="fas fa-image mr-2"></i> Photo
</button>
<button class="flex items-center text-gray-400 hover:text-carsecondary">
<i class="fas fa-video mr-2"></i> Video
</button>
<button class="flex items-center text-gray-400 hover:text-green-400">
<i class="fas fa-calendar mr-2"></i> Event
</button>
</div>
<button class="btn-primary px-4 py-1 rounded-full font-bold">Post</button>
</div>
</div>
<!-- Post 1 -->
<div class="bg-cardark rounded-xl p-6 shadow-lg card-hover">
<div class="flex justify-between">
<div class="flex">
<img class="h-12 w-12 rounded-full object-cover" src="https://randomuser.me/api/portraits/women/44.jpg" alt="Profile">
<div class="ml-3">
<h4 class="text-white font-bold">Sarah Miller</h4>
<p class="text-gray-400 text-sm">Posted 3 hours ago</p>
</div>
</div>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-ellipsis-h"></i>
</button>
</div>
<p class="mt-4 text-white">Just finished installing the new turbo kit on my Nissan GT-R! Can't wait to hit the track this weekend. 🏁 #Nissan #GTR #Turbo #TrackDay</p>
<div class="mt-4 grid grid-cols-2 gap-2">
<img src="https://images.unsplash.com/photo-1514867644123-6385d58d3cd4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80" alt="Car" class="post-image rounded-lg">
<img src="https://images.unsplash.com/photo-1617814076367-b759c7d7e738?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&q=80" alt="Engine" class="post-image rounded-lg">
</div>
<div class="mt-4 flex justify-between">
<div class="flex items-center">
<span class="text-gray-400 mr-2"><i class="fas fa-heart text-carbrand"></i> 124</span>
<span class="text-gray-400"><i class="fas fa-comment ml-4 text-carsecondary"></i> 24</span>
</div>
<span class="text-gray-400"><i class="fas fa-share"></i> Share</span>
</div>
<div class="mt-4 flex gap-4 border-t border-gray-800 pt-4">
<button class="like-btn flex items-center text-gray-400 hover:text-carbrand">
<i class="fas fa-heart mr-2"></i> Like
</button>
<button class="comment-btn flex items-center text-gray-400 hover:text-carsecondary">
<i class="fas fa-comment mr-2"></i> Comment
</button>
<button class="share-btn flex items-center text-gray-400 hover:text-green-400">
<i class="fas fa-share mr-2"></i> Share
</button>
</div>
</div>
<!-- Post 2 -->
<div class="bg-cardark rounded-xl p-6 shadow-lg card-hover">
<div class="flex justify-between">
<div class="flex">
<img class="h-12 w-12 rounded-full object-cover" src="https://randomuser.me/api/portraits/men/22.jpg" alt="Profile">
<div class="ml-3">
<h4 class="text-white font-bold">Alex Turner</h4>
<p class="text-gray-400 text-sm">Posted 5 hours ago</p>
</div>
</div>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-ellipsis-h"></i>
</button>
</div>
<p class="mt-4 text-white">My restored '69 Camaro SS just won Best in Show at the Classic Car Expo! All those late nights in the garage paid off. 😎 #ClassicCars #Camaro #Restoration</p>
<div class="mt-4">
<img src="https://images.unsplash.com/photo-1550355291-bbee04a92027?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80" alt="Car" class="post-image w-full rounded-lg">
</div>
<div class="mt-4 flex justify-between">
<div class="flex items-center">
<span class="text-gray-400 mr-2"><i class="fas fa-heart text-carbrand"></i> 89</span>
<span class="text-gray-400"><i class="fas fa-comment ml-4 text-carsecondary"></i> 17</span>
</div>
<span class="text-gray-400"><i class="fas fa-share"></i> Share</span>
</div>
<div class="mt-4 flex gap-4 border-t border-gray-800 pt-4">
<button class="like-btn flex items-center text-gray-400 hover:text-carbrand">
<i class="fas fa-heart mr-2"></i> Like
</button>
<button class="comment-btn flex items-center text-gray-400 hover:text-carsecondary">
<i class="fas fa-comment mr-2"></i> Comment
</button>
<button class="share-btn flex items-center text-gray-400 hover:text-green-400">
<i class="fas fa-share mr-2"></i> Share
</button>
</div>
</div>
<!-- Post 3 -->
<div class="bg-cardark rounded-xl p-6 shadow-lg card-hover">
<div class="flex justify-between">
<div class="flex">
<img class="h-12 w-12 rounded-full object-cover" src="https://randomuser.me/api/portraits/men/45.jpg" alt="Profile">
<div class="ml-3">
<h4 class="text-white font-bold">James Wilson</h4>
<p class="text-gray-400 text-sm">Posted 8 hours ago</p>
</div>
</div>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-ellipsis-h"></i>
</button>
</div>
<p class="mt-4 text-white">Just picked up this beauty - 2023 Porsche 911 GT3 Touring. The perfect blend of luxury and performance. Any Porsche owners in the LA area?</p>
<div class="mt-4">
<img src="https://images.unsplash.com/photo-1601924994987-44e0a4597c6b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80" alt="Car" class="post-image w-full rounded-lg">
</div>
<div class="mt-4 flex justify-between">
<div class="flex items-center">
<span class="text-gray-400 mr-2"><i class="fas fa-heart text-carbrand"></i> 212</span>
<span class="text-gray-400"><i class="fas fa-comment ml-4 text-carsecondary"></i> 43</span>
</div>
<span class="text-gray-400"><i class="fas fa-share"></i> Share</span>
</div>
<div class="mt-4 flex gap-4 border-t border-gray-800 pt-4">
<button class="like-btn flex items-center text-gray-400 hover:text-carbrand">
<i class="fas fa-heart mr-2"></i> Like
</button>
<button class="comment-btn flex items-center text-gray-400 hover:text-carsecondary">
<i class="fas fa-comment mr-2"></i> Comment
</button>
<button class="share-btn flex items-center text-gray-400 hover:text-green-400">
<i class="fas fa-share mr-2"></i> Share
</button>
</div>
</div>
</div>
<!-- Right Sidebar -->
<div class="lg:w-1/4 flex flex-col gap-6">
<!-- Community Stats -->
<div class="bg-cardark rounded-xl p-6 shadow-lg">
<h3 class="text-lg font-bold text-white mb-4">Community Stats</h3>
<div class="space-y-4">
<div class="flex justify-between">
<div class="flex items-center">
<div class="bg-gray-800 p-2 rounded-lg">
<i class="fas fa-users text-carsecondary"></i>
</div>
<div class="ml-3">
<p class="text-gray-400 text-sm">Members</p>
<p class="text-white font-bold">24,589</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-gray-800 p-2 rounded-lg">
<i class="fas fa-car text-carbrand"></i>
</div>
<div class="ml-3">
<p class="text-gray-400 text-sm">Cars</p>
<p class="text-white font-bold">18,742</p>
</div>
</div>
</div>
<div class="flex justify-between">
<div class="flex items-center">
<div class="bg-gray-800 p-2 rounded-lg">
<i class="fas fa-comments text-green-400"></i>
</div>
<div class="ml-3">
<p class="text-gray-400 text-sm">Posts</p>
<p class="text-white font-bold">42,367</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-gray-800 p-2 rounded-lg">
<i class="fas fa-calendar-day text-yellow-400"></i>
</div>
<div class="ml-3">
<p class="text-gray-400 text-sm">Events</p>
<p class="text-white font-bold">187</p>
</div>
</div>
</div>
</div>
</div>
<!-- Popular Groups -->
<div class="bg-cardark rounded-xl p-6 shadow-lg">
<h3 class="text-lg font-bold text-white mb-4">Popular Groups</h3>
<div class="space-y-4">
<div class="trending-card rounded-lg p-3 flex items-center cursor-pointer">
<div class="bg-gradient-to-br from-carbrand to-orange-500 rounded-lg w-12 h-12 flex items-center justify-center">
<i class="fas fa-bolt text-white"></i>
</div>
<div class="ml-4">
<h4 class="text-white font-medium">Electric Vehicle Enthusiasts</h4>
<p class="text-gray-400 text-sm">8.4k members</p>
</div>
</div>
<div class="trending-card rounded-lg p-3 flex items-center cursor-pointer">
<div class="bg-gradient-to-br from-blue-500 to-carsecondary rounded-lg w-12 h-12 flex items-center justify-center">
<i class="fas fa-wrench text-white"></i>
</div>
<div class="ml-4">
<h4 class="text-white font-medium">DIY Mechanics</h4>
<p class="text-gray-400 text-sm">12.7k members</p>
</div>
</div>
<div class="trending-card rounded-lg p-3 flex items-center cursor-pointer">
<div class="bg-gradient-to-br from-yellow-500 to-red-500 rounded-lg w-12 h-12 flex items-center justify-center">
<i class="fas fa-flag-checkered text-white"></i>
</div>
<div class="ml-4">
<h4 class="text-white font-medium">Track Day Warriors</h4>
<p class="text-gray-400 text-sm">6.3k members</p>
</div>
</div>
<div class="trending-card rounded-lg p-3 flex items-center cursor-pointer">
<div class="bg-gradient-to-br from-purple-500 to-pink-500 rounded-lg w-12 h-12 flex items-center justify-center">
<i class="fas fa-car-side text-white"></i>
</div>
<div class="ml-4">
<h4 class="text-white font-medium">JDM Legends</h4>
<p class="text-gray-400 text-sm">15.2k members</p>
</div>
</div>
</div>
</div>
<!-- Performance Leaderboard -->
<div class="bg-cardark rounded-xl p-6 shadow-lg">
<h3 class="text-lg font-bold text-white mb-4">Performance Leaderboard</h3>
<div class="space-y-4">
<div class="flex justify-between items-center p-2 hover:bg-gray-800 rounded-lg cursor-pointer">
<div class="flex items-center">
<span class="text-carbrand font-bold mr-3">1</span>
<img class="h-10 w-10 rounded-full object-cover" src="https://randomuser.me/api/portraits/men/41.jpg" alt="Profile">
<div class="ml-3">
<h4 class="text-white text-sm font-medium">Robert Chen</h4>
<p class="text-gray-400 text-xs">Porsche 911 Turbo S</p>
</div>
</div>
<div class="speedometer">
<div class="speed-value">7:12</div>
<div class="speed-label">Nürburgring</div>
</div>
</div>
<div class="flex justify-between items-center p-2 hover:bg-gray-800 rounded-lg cursor-pointer">
<div class="flex items-center">
<span class="text-carbrand font-bold mr-3">2</span>
<img class="h-10 w-10 rounded-full object-cover" src="https://randomuser.me/api/portraits/women/22.jpg" alt="Profile">
<div class="ml-3">
<h4 class="text-white text-sm font-medium">Lisa Rodriguez</h4>
<p class="text-gray-400 text-xs">McLaren 720S</p>
</div>
</div>
<div class="speedometer">
<div class="speed-value">7:18</div>
<div class="speed-label">Nürburgring</div>
</div>
</div>
<div class="flex justify-between items-center p-2 hover:bg-gray-800 rounded-lg cursor-pointer">
<div class="flex items-center">
<span class="text-carbrand font-bold mr-3">3</span>
<img class="h-10 w-10 rounded-full object-cover" src="https://randomuser.me/api/portraits/men/19.jpg" alt="Profile">
<div class="ml-3">
<h4 class="text-white text-sm font-medium">David Kim</h4>
<p class="text-gray-400 text-xs">Ferrari 488 Pista</p>
</div>
</div>
<div class="speedometer">
<div class="speed-value">7:24</div>
<div class="speed-label">Nürburgring</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-cardark border-t border-gray-800 mt-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-white font-bold text-lg mb-4">AutoConnect</h3>
<p class="text-gray-400">The ultimate social network for car enthusiasts. Share your passion, connect with fellow gearheads, and showcase your rides.</p>
<div class="flex mt-4 space-x-4">
<a href="#" class="text-gray-400 hover:text-carbrand"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-carbrand"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-carbrand"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-carbrand"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<h3 class="text-white font-bold text-lg mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Garage</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Events Calendar</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Car Marketplace</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Forums</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-bold text-lg mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Car Reviews</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Maintenance Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Performance Mods</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Car Shows</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Track Days</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-bold text-lg mb-4">Newsletter</h3>
<p class="text-gray-400">Subscribe to get the latest car news and event updates.</p>
<div class="mt-4">
<div class="flex">
<input type="email" placeholder="Your email" class="bg-gray-800 text-white rounded-l-lg px-4 py-2 w-full focus:outline-none focus:ring-1 focus:ring-carbrand">
<button class="btn-primary rounded-r-lg px-4"><i class="fas fa-paper-plane"></i></button>
</div>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-6 text-center text-gray-400">
<p>© 2023 AutoConnect. All rights reserved. Designed for car enthusiasts by car enthusiasts.</p>
</div>
</div>
</footer>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=cob05/deepspace-autoconnect-r1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>