Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-05-11 00:41:37 +00:00

View File

@@ -16,6 +16,13 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar
import { Diamond, Sparkles } from "lucide-react";
export default function LandingPage() {
const handleBookingClick = () => {
const element = document.getElementById('contact');
if (element) {
element.scrollIntoView({ behavior: 'smooth' });
}
};
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -49,7 +56,7 @@ export default function LandingPage() {
description="Premium mobile detailing for busy drivers, families, smokers, pet owners, fleets, and luxury vehicles."
tag="Luxury Mobile Detailing"
buttons={[
{ text: "Book Your Detail", href: "#contact" },
{ text: "Book Your Detail", onClick: handleBookingClick },
{ text: "See Our Work", href: "#gallery" },
]}
mediaItems={[
@@ -113,9 +120,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
plans={[
{ id: "s1", title: "Interior Detail", price: "$150", period: "Starting at", features: ["Shampoo", "Steam", "Odour Removal"], button: { text: "Book Now" }, imageSrc: "http://img.b2bpic.net/free-photo/man-washing-car_23-2149316432.jpg" },
{ id: "s2", title: "Exterior Detail", price: "$120", period: "Starting at", features: ["Hand Wash", "Wax", "Tire Shine"], button: { text: "Book Now" }, imageSrc: "http://img.b2bpic.net/free-photo/close-up-foam-azure-water_23-2147798202.jpg?_wi=2" },
{ id: "s3", title: "Full Detail", price: "$250", period: "Starting at", features: ["Complete Resto", "Smoke Removal", "Paint Protection"], button: { text: "Book Now" }, imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22303.jpg?_wi=2" },
{ id: "s1", title: "Interior Detail", price: "$150", period: "Starting at", features: ["Shampoo", "Steam", "Odour Removal"], button: { text: "Book Now", onClick: handleBookingClick }, imageSrc: "http://img.b2bpic.net/free-photo/man-washing-car_23-2149316432.jpg" },
{ id: "s2", title: "Exterior Detail", price: "$120", period: "Starting at", features: ["Hand Wash", "Wax", "Tire Shine"], button: { text: "Book Now", onClick: handleBookingClick }, imageSrc: "http://img.b2bpic.net/free-photo/close-up-foam-azure-water_23-2147798202.jpg?_wi=2" },
{ id: "s3", title: "Full Detail", price: "$250", period: "Starting at", features: ["Complete Resto", "Smoke Removal", "Paint Protection"], button: { text: "Book Now", onClick: handleBookingClick }, imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22303.jpg?_wi=2" },
]}
title="Our Detailing Packages"
description="Pick the package that fits your vehicle's needs."
@@ -222,4 +229,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}