|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Emin Aghasanov - Premium Car Dealer</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"> |
|
<style> |
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); |
|
|
|
body { |
|
font-family: 'Poppins', sans-serif; |
|
scroll-behavior: smooth; |
|
} |
|
|
|
.hero-gradient { |
|
background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%); |
|
} |
|
|
|
.car-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); |
|
} |
|
|
|
.testimonial-card { |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.testimonial-card:hover { |
|
transform: scale(1.03); |
|
} |
|
|
|
.contact-input:focus { |
|
outline: none; |
|
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); |
|
} |
|
</style> |
|
</head> |
|
<body class="bg-gray-50"> |
|
|
|
<nav class="bg-white shadow-lg 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"> |
|
<div class="flex-shrink-0 flex items-center"> |
|
<i class="fas fa-car text-red-600 text-2xl mr-2"></i> |
|
<span class="text-xl font-bold text-gray-900">Emin's Auto</span> |
|
</div> |
|
</div> |
|
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> |
|
<a href="#home" class="text-gray-900 hover:text-red-600 px-3 py-2 text-sm font-medium">Home</a> |
|
<a href="#inventory" class="text-gray-900 hover:text-red-600 px-3 py-2 text-sm font-medium">Inventory</a> |
|
<a href="#about" class="text-gray-900 hover:text-red-600 px-3 py-2 text-sm font-medium">About</a> |
|
<a href="#testimonials" class="text-gray-900 hover:text-red-600 px-3 py-2 text-sm font-medium">Testimonials</a> |
|
<a href="#contact" class="text-gray-900 hover:text-red-600 px-3 py-2 text-sm font-medium">Contact</a> |
|
</div> |
|
<div class="md:hidden flex items-center"> |
|
<button id="mobile-menu-button" class="text-gray-500 hover:text-gray-900 focus:outline-none"> |
|
<i class="fas fa-bars text-xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-200"> |
|
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
|
<a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-red-600 hover:bg-gray-50">Home</a> |
|
<a href="#inventory" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-red-600 hover:bg-gray-50">Inventory</a> |
|
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-red-600 hover:bg-gray-50">About</a> |
|
<a href="#testimonials" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-red-600 hover:bg-gray-50">Testimonials</a> |
|
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-red-600 hover:bg-gray-50">Contact</a> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<section id="home" class="relative bg-gray-900 text-white"> |
|
<div class="absolute inset-0"> |
|
<img class="w-full h-full object-cover" src="https://images.unsplash.com/photo-1494972308805-463bc619d34e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1473&q=80" alt="Luxury cars"> |
|
<div class="absolute inset-0 hero-gradient"></div> |
|
</div> |
|
<div class="relative max-w-7xl mx-auto px-4 py-24 sm:px-6 lg:px-8"> |
|
<div class="md:w-1/2"> |
|
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-4">Premium Cars For Discerning Buyers</h1> |
|
<p class="text-lg md:text-xl mb-8">Emin Aghasanov brings you the finest selection of luxury and performance vehicles with unmatched service.</p> |
|
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
|
<a href="#inventory" class="bg-red-600 hover:bg-red-700 text-white px-6 py-3 rounded-lg font-medium text-center transition duration-300">View Inventory</a> |
|
<a href="#contact" class="bg-transparent hover:bg-white hover:text-gray-900 text-white border border-white px-6 py-3 rounded-lg font-medium text-center transition duration-300">Contact Emin</a> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="inventory" class="py-16 bg-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold text-gray-900 mb-2">Featured Inventory</h2> |
|
<div class="w-20 h-1 bg-red-600 mx-auto"></div> |
|
<p class="mt-4 text-gray-600 max-w-2xl mx-auto">Explore our curated selection of premium vehicles. Each car undergoes rigorous inspection to ensure top quality.</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="car-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> |
|
<div class="relative"> |
|
<img class="w-full h-64 object-cover" src="https://images.unsplash.com/photo-1555215695-3004980ad54e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Mercedes-Benz S-Class"> |
|
<div class="absolute top-4 right-4 bg-red-600 text-white px-3 py-1 rounded-full text-xs font-semibold">New Arrival</div> |
|
</div> |
|
<div classp-6"> |
|
<div class="flex justify-between items-start"> |
|
<div> |
|
<h3 class="text-xl font-bold text-gray-900">Mercedes-Benz S-Class</h3> |
|
<p class="text-gray-600">2023 Model</p> |
|
</div> |
|
<span class="text-xl font-bold text-red-600">$109,900</span> |
|
</div> |
|
<div class="mt-4 flex flex-wrap gap-2"> |
|
<span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Luxury</span> |
|
<span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">V8 Engine</span> |
|
<span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">12K Miles</span> |
|
</div> |
|
<div class="mt-6 flex justify-between items-center"> |
|
<div class="flex space-x-2 text-gray-500"> |
|
<span class="flex items-center"><i class="fas fa-gas-pump mr-1"></i> 22 MPG</span> |
|
<span class="flex items-center"><i class="fas fa-tachometer-alt mr-1"></i> 4.5s 0-60</span> |
|
<span class="flex items-center"><i class="fas fa-chair mr-1"></i> 5</span> |
|
</div> |
|
<button class="text-red-600 hover:text-red-700 font-medium">View Details</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="car-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> |
|
<div class="relative"> |
|
<img class="w-full h-64 object-cover" src="https://images.unsplash.com/photo-1541899481282-d53bffe3c35d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Porsche 911 Turbo S"> |
|
<div class="absolute top-4 right-4 bg-blue-600 text-white px-3 py-1 rounded-full text-xs font-semibold">Certified</div> |
|
</div> |
|
<div class="p-6"> |
|
<div class="flex justify-between items-start"> |
|
<div> |
|
<h3 class="text-xl font-bold text-gray-900">Porsche 911 Turbo S</h3> |
|
<p class="text-gray-600">2022 Model</p> |
|
</div> |
|
<span class="text-xl font-bold text-red-600">$189,500</span> |
|
</div> |
|
<div class="mt-4 flex flex-wrap gap-2"> |
|
<span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Performance</span> |
|
<span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Twin-Turbo</span> |
|
<span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">8K Miles</span> |
|
</div> |
|
<div class="mt-6 flex justify-between items-center"> |
|
<div class="flex space-x-2 text-gray-500"> |
|
<span class="flex items-center"><i class="fas fa-gas-pump mr-1"></i> 18 MPG</span> |
|
<span class="flex items-center"><i class="fas fa-tachometer-alt mr-1"></i> 2.6s 0-60</span> |
|
<span class="flex items-center"><i class="fas fa-chair mr-1"></i> 4</span> |
|
</div> |
|
<button class="text-red-600 hover:text-red-700 font-medium">View Details</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="car-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> |
|
<div class="relative"> |
|
<img class="w-full h-64 object-cover" src="https://images.unsplash.com/photo-1553440569-bcc63803a83d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1025&q=80" alt="Range Rover Autobiography"> |
|
<div class="absolute top-4 right-4 bg-green-600 text-white px-3 py-1 rounded-full text-xs font-semibold">Low Miles</div> |
|
</div> |
|
<div class="p-6"> |
|
<div class="flex justify-between items-start"> |
|
<div> |
|
<h3 class="text-xl font-bold text-gray-900">Range Rover Autobiography</h3> |
|
<p class="text-gray-600">2021 Model</p> |
|
</div> |
|
<span class="text-xl font-bold text-red-600">$92,750</span> |
|
</div> |
|
<div class="mt-4 flex flex-wrap gap-2"> |
|
<span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">SUV</span> |
|
<span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">Supercharged</span> |
|
<span class="bg-gray-100 text-gray-800 text-xs px-2 py-1 rounded">15K Miles</span> |
|
</div> |
|
<div class="mt-6 flex justify-between items-center"> |
|
<div class="flex space-x-2 text-gray-500"> |
|
<span class="flex items-center"><i class="fas fa-gas-pump mr-1"></i> 17 MPG</span> |
|
<span class="flex items-center"><i class="fas fa-tachometer-alt mr-1"></i> 5.8s 0-60</span> |
|
<span class="flex items-center"><i class="fas fa-chair mr-1"></i> 5</span> |
|
</div> |
|
<button class="text-red-600 hover:text-red-700 font-medium">View Details</button> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-12 text-center"> |
|
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-red-600 hover:bg-red-700 transition duration-300"> |
|
View Full Inventory |
|
<i class="fas fa-arrow-right ml-2"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="about" class="py-16 bg-gray-50"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:flex lg:items-center lg:justify-between"> |
|
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> |
|
<h2 class="text-3xl font-bold text-gray-900 mb-4">About Emin Aghasanov</h2> |
|
<div class="w-20 h-1 bg-red-600 mb-6"></div> |
|
<p class="text-gray-600 mb-4">With over 15 years of experience in the luxury automotive industry, Emin Aghasanov has built a reputation for integrity, expertise, and exceptional customer service.</p> |
|
<p class="text-gray-600 mb-6">Emin personally selects each vehicle in his inventory, ensuring only the finest examples of automotive excellence are offered to his clients.</p> |
|
<div class="space-y-4"> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<i class="fas fa-check-circle text-red-600"></i> |
|
</div> |
|
<p class="ml-3 text-gray-700">Over 500 satisfied customers served</p> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<i class="fas fa-check-circle text-red-600"></i> |
|
</div> |
|
<p class="ml-3 text-gray-700">150+ point inspection on every vehicle</p> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<i class="fas fa-check-circle text-red-600"></i> |
|
</div> |
|
<p class="ml-3 text-gray-700">Transparent pricing with no hidden fees</p> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="lg:w-1/2 relative"> |
|
<img class="w-full rounded-lg shadow-xl" src="https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Emin Aghasanov with a client"> |
|
<div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-lg hidden md:block"> |
|
<div class="flex items-center"> |
|
<div class="bg-red-100 p-3 rounded-full mr-4"> |
|
<i class="fas fa-trophy text-red-600 text-xl"></i> |
|
</div> |
|
<div> |
|
<p class="text-gray-900 font-bold">Top Luxury Dealer</p> |
|
<p class="text-gray-600 text-sm">Awarded 2022 & 2023</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-16 bg-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold text-gray-900 mb-2">Why Choose Emin's Auto</h2> |
|
<div class="w-20 h-1 bg-red-600 mx-auto"></div> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
|
<div class="bg-gray-50 p-8 rounded-lg text-center"> |
|
<div class="bg-red-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4"> |
|
<i class="fas fa-search-dollar text-red-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold text-gray-900 mb-2">Rigorous Selection</h3> |
|
<p class="text-gray-600">Each vehicle undergoes a meticulous 150+ point inspection to ensure only the highest quality cars make it to our showroom.</p> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-8 rounded-lg text-center"> |
|
<div class="bg-red-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4"> |
|
<i class="fas fa-hand-holding-usd text-red-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold text-gray-900 mb-2">Competitive Financing</h3> |
|
<p class="text-gray-600">We work with top lenders to secure the best financing options tailored to your needs and budget.</p> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-8 rounded-lg text-center"> |
|
<div class="bg-red-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4"> |
|
<i class="fas fa-shield-alt text-red-600 text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold text-gray-900 mb-2">After-Sale Support</h3> |
|
<p class="text-gray-600">Our relationship doesn't end at the sale. We provide ongoing support and assistance throughout your ownership experience.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="testimonials" class="py-16 bg-gray-900 text-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-12"> |
|
<h2 class="text-3xl font-bold mb-2">Client Testimonials</h2> |
|
<div class="w-20 h-1 bg-red-600 mx-auto"></div> |
|
<p class="mt-4 text-gray-300 max-w-2xl mx-auto">Hear what our satisfied customers have to say about their experience with Emin's Auto.</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
|
<div class="testimonial-card bg-gray-800 p-8 rounded-lg"> |
|
<div class="flex items-center mb-4"> |
|
<div class="flex-shrink-0"> |
|
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah Johnson"> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-bold">Sarah Johnson</h4> |
|
<div class="flex text-yellow-400 mt-1"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
</div> |
|
</div> |
|
</div> |
|
<p class="text-gray-300 italic">"Emin found me the perfect Mercedes when no other dealer could. His knowledge of the luxury market is unparalleled and he made the entire process seamless."</p> |
|
</div> |
|
|
|
<div class="testimonial-card bg-gray-800 p-8 rounded-lg"> |
|
<div class="flex items-center mb-4"> |
|
<div class="flex-shrink-0"> |
|
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/75.jpg" alt="Michael Chen"> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-bold">Michael Chen</h4> |
|
<div class="flex text-yellow-400 mt-1"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
</div> |
|
</div> |
|
</div> |
|
<p class="text-gray-300 italic">"The Porsche 911 Turbo S I bought from Emin exceeded all expectations. The car was in flawless condition and the paperwork was handled perfectly. Will definitely buy from him again."</p> |
|
</div> |
|
|
|
<div class="testimonial-card bg-gray-800 p-8 rounded-lg"> |
|
<div class="flex items-center mb-4"> |
|
<div class="flex-shrink-0"> |
|
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/42.jpg" alt="David Rodriguez"> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-bold">David Rodriguez</h4> |
|
<div class="flex text-yellow-400 mt-1"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star-half-alt"></i> |
|
</div> |
|
</div> |
|
</div> |
|
<p class="text-gray-300 italic">"As a first-time luxury car buyer, I was nervous about the process. Emin walked me through everything and found me an amazing Range Rover at a fair price. Highly recommend!"</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="contact" class="py-16 bg-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:grid lg:grid-cols-2 lg:gap-12"> |
|
<div class="mb-12 lg:mb-0"> |
|
<h2 class="text-3xl font-bold text-gray-900 mb-4">Contact Emin</h2> |
|
<div class="w-20 h-1 bg-red-600 mb-6"></div> |
|
<p class="text-gray-600 mb-8">Ready to find your dream car? Contact Emin directly for personalized service and expert advice on your next luxury vehicle purchase.</p> |
|
|
|
<div class="space-y-6"> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<i class="fas fa-map-marker-alt text-red-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg font-medium text-gray-900">Showroom Address</h3> |
|
<p class="text-gray-600">123 Luxury Lane, Beverly Hills, CA 90210</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<i class="fas fa-phone-alt text-red-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg font-medium text-gray-900">Phone Number</h3> |
|
<p class="text-gray-600">(310) 555-1234</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<i class="fas fa-envelope text-red-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg font-medium text-gray-900">Email Address</h3> |
|
<p class="text-gray-600">emin@eminsauto.com</p> |
|
</div> |
|
</div> |
|
|
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 mt-1"> |
|
<i class="fas fa-clock text-red-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h3 class="text-lg font-medium text-gray-900">Business Hours</h3> |
|
<p class="text-gray-600">Monday - Friday: 9am - 7pm<br>Saturday: 10am - 5pm<br>Sunday: By appointment</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-8 flex space-x-4"> |
|
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white p-3 rounded-full"> |
|
<i class="fab fa-facebook-f"></i> |
|
</a> |
|
<a href="#" class="bg-pink-600 hover:bg-pink-700 text-white p-3 rounded-full"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="bg-blue-400 hover:bg-blue-500 text-white p-3 rounded-full"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="bg-green-600 hover:bg-green-700 text-white p-3 rounded-full"> |
|
<i class="fab fa-whatsapp"></i> |
|
</a> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-8 rounded-lg shadow-md"> |
|
<h3 class="text-xl font-bold text-gray-900 mb-6">Send Emin a Message</h3> |
|
<form> |
|
<div class="mb-4"> |
|
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Your Name</label> |
|
<input type="text" id="name" class="contact-input w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-red-500 focus:border-red-500" placeholder="John Smith"> |
|
</div> |
|
<div class="mb-4"> |
|
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label> |
|
<input type="email" id="email" class="contact-input w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-red-500 focus:border-red-500" placeholder="john@example.com"> |
|
</div> |
|
<div class="mb-4"> |
|
<label for="phone" class="block text-sm font-medium text-gray-700 mb-1">Phone Number</label> |
|
<input type="tel" id="phone" class="contact-input w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-red-500 focus:border-red-500" placeholder="(123) 456-7890"> |
|
</div> |
|
<div class="mb-4"> |
|
<label for="interest" class="block text-sm font-medium text-gray-700 mb-1">Vehicle Interest</label> |
|
<select id="interest" class="contact-input w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-red-500 focus:border-red-500"> |
|
<option value="">Select a vehicle type</option> |
|
<option value="sedan">Luxury Sedan</option> |
|
<option value="suv">Premium SUV</option> |
|
<option value="sports">Sports Car</option> |
|
<option value="other">Other</option> |
|
</select> |
|
</div> |
|
<div class="mb-6"> |
|
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Your Message</label> |
|
<textarea id="message" rows="4" class="contact-input w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-red-500 focus:border-red-500" placeholder="Tell us about the vehicle you're looking for..."></textarea> |
|
</div> |
|
<button type="submit" class="w-full bg-red-600 hover:bg-red-700 text-white py-3 px-4 rounded-md font-medium transition duration-300"> |
|
Send Message |
|
</button> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<footer class="bg-gray-900 text-white py-12"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
|
<div> |
|
<h3 class="text-lg font-bold mb-4">Emin's Auto</h3> |
|
<p class="text-gray-400">Premium luxury vehicles with exceptional service. Let us help you find your dream car.</p> |
|
</div> |
|
<div> |
|
<h3 class="text-lg font-bold mb-4">Quick Links</h3> |
|
<ul class="space-y-2"> |
|
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li> |
|
<li><a href="#inventory" class="text-gray-400 hover:text-white transition duration-300">Inventory</a></li> |
|
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About</a></li> |
|
<li><a href="#testimonials" class="text-gray-400 hover:text-white transition duration-300">Testimonials</a></li> |
|
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h3 class="text-lg font-bold mb-4">Services</h3> |
|
<ul class="space-y-2"> |
|
<li class="text-gray-400">Luxury Vehicle Sales</li> |
|
<li class="text-gray-400">Trade-In Appraisals</li> |
|
<li class="text-gray-400">Financing Assistance</li> |
|
<li class="text-gray-400">Vehicle Delivery</li> |
|
<li class="text-gray-400">After-Sale Support</li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h3 class="text-lg font-bold mb-4">Newsletter</h3> |
|
<p class="text-gray-400 mb-4">Subscribe to receive updates on new inventory and special offers.</p> |
|
<form class="flex"> |
|
<input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-md w-full text-gray-900 focus:outline-none"> |
|
<button type="submit" class="bg-red-600 hover:bg-red-700 px-4 py-2 rounded-r-md"> |
|
<i class="fas fa-paper-plane"></i> |
|
</button> |
|
</form> |
|
</div> |
|
</div> |
|
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> |
|
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 Emin's Auto. All rights reserved.</p> |
|
<div class="flex space-x-6"> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-facebook-f"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> |
|
<i class="fab fa-linkedin-in"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
document.getElementById('mobile-menu-button').addEventListener('click', function() { |
|
const menu = document.getElementById('mobile-menu'); |
|
menu.classList.toggle('hidden'); |
|
}); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
|
|
const targetId = this.getAttribute('href'); |
|
if (targetId === '#') return; |
|
|
|
const targetElement = document.querySelector(targetId); |
|
if (targetElement) { |
|
targetElement.scrollIntoView({ |
|
behavior: 'smooth' |
|
}); |
|
|
|
|
|
const mobileMenu = document.getElementById('mobile-menu'); |
|
if (!mobileMenu.classList.contains('hidden')) { |
|
mobileMenu.classList.add('hidden'); |
|
} |
|
} |
|
}); |
|
}); |
|
|
|
|
|
const contactForm = document.querySelector('form'); |
|
if (contactForm) { |
|
contactForm.addEventListener('submit', function(e) { |
|
e.preventDefault(); |
|
alert('Thank you for your message! Emin will contact you shortly.'); |
|
this.reset(); |
|
}); |
|
} |
|
</script> |
|
<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=dotkaio/emin" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |