<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quality Vehicles</title>
<link
href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.csshref="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwid.min.css" rel="stylesheet">
<style>
.badge {
@apply bg-green-500 text-white px-2 py-1 rounded-full;
}
</style>
</head>
<body class="bg-gray-100 font-sans">
<!-- Hero Section -->
<div class="hero min-h-screen bg-base-200">
<div class="hero-content flex-col lg:flex-row-reverse">
<img src="https://via.placeholder.com/400x300?text=Car"
alt="Placeholder car image" class="rounded-lg shadow-2xl mr-8"/>
<div>
<h1 class="mb-5 text-5xl font-bold">Quality Vehicles,
Hand-Selected by [Your Name]</h1>
<p class="mb-5 text-xl">10 years of experience in sourcing
reliable, honest cars. I focus on quality over quantity.</p>
</div>
</div>
</div>
<!-- Specialist Standard Section -->
<section class="py-20 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-6 text-center">The Specialist
Standard</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white shadow-md p-6 rounded-lg flex
items-center justify-center flex-col">
<img
src="https://via.placeholder.com/50?text=Hand-Picked" alt="Hand Picked
Icon" class="w-12 h-12 mb-3"/>
<h3 class="mb-2 text-xl font-bold">Hand-Picked</h3>
<p class="text-center">I personally source every
vehicle to ensure it meets my standards.</p>
</div>
<div class="bg-white shadow-md p-6 rounded-lg flex
items-center justify-center flex-col">
<img
src="https://via.placeholder.com/50?text=Maintenance" alt="Maintenance
Icon" class="w-12 h-12 mb-3"/>
<h3 class="mb-2 text-xl font-bold">Maintenance</h3>
<p class="text-center">Every car comes with a long MOT
and an up-to-date service.</p>
</div>
<div class="bg-white shadow-md p-6 rounded-lg flex
items-center justify-center flex-col">
<img
src="https://via.placeholder.com/50?text=Quality+Assured" alt="Quality
Assured Icon" class="w-12 h-12 mb-3"/>
<h3 class="mb-2 text-xl font-bold">Quality
Assured</h3>
<p class="text-center">All vehicles are
HPI Clear and undergo a rigorous multi-point check prior to sale.</p>
</div>
</div>
</div>
</section>
<!-- Inventory Section -->
<section class="py-20 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-6 text-center">Current
Stock</h2>
<div class="grid grid-cols-1 md:grid-cols-3 lg:grid-cols-4
gap-8">
<!-- Sample Car Card -->
<a href="#" class="bg-white shadow-md p-6 rounded-lg flex
items-center justify-center flex-col">
<img
src="https://via.placeholder.com/200x150?text=Car" alt="Placeholder car
image" class="rounded-lg mb-3"/>
<h3 class="mb-2 text-xl font-bold">2020 Ford
Mustang</h3>
<p class="text-center mb-2">15,000 miles</p>
<p class="text-center mb-2">$40,000</p>
<div class="badge">HPI Clear</div>
<button class="mt-4 btn btn-primary">WhatsApp for
Details</button>
</a>
<!-- Add more car cards as needed -->
</div>
</div>
</section>
<!-- Transparency Section -->
<section class="py-20 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-6
text-center">Transparency</h2>
<p class="text-center">As a one-man operation, I manage every
aspect of your purchase personally. No high-pressure sales—just honest
cars and expert advice.</p>
</div>
</section>
<!-- Contact Section -->
<footer class="py-10 bg-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Contact Me</h2>
<p>Email: example@example.com</p>
<p>Phone: 123-456-7890</p>
<p><small>Viewings by Appointment Only</small></p>
</div>
</footer>
<!-- Legal Footer -->
<footer class="py-6 bg-gray-100 text-center">
<div class="container mx-auto px-4">
<p>EB Cars is a trading name of EB Cars LTD.
Registered in England & Wales. Company No: 17143062. Registered
Office: 59 Laundtich Crescent, Downham Market. PE38 9RB.</p>
</div>
</footer>
</body>
</html>