Merge version_1 into main #2

Merged
bender merged 5 commits from version_1 into main 2026-03-07 19:39:40 +00:00
5 changed files with 85 additions and 283 deletions

View File

@@ -5,6 +5,7 @@ import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Calendar } from "lucide-react";
import Link from "next/link";
export default function BookingPage() {
@@ -17,8 +18,7 @@ export default function BookingPage() {
const footerColumns = [
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Interior Detailing", href: "#" },
{ label: "Exterior Detailing", href: "#" },
{ label: "Ceramic Coating", href: "#" },
@@ -26,8 +26,7 @@ export default function BookingPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Gallery", href: "#" },
{ label: "Reviews", href: "/reviews" },
@@ -35,8 +34,7 @@ export default function BookingPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Book Appointment", href: "/booking" },
{ label: "Phone: +1 562-644-9348", href: "tel:+15626449348" },
{ label: "12333 Woodruff Ave, Downey, CA 90241", href: "#" },
@@ -44,8 +42,7 @@ export default function BookingPage() {
],
},
{
title: "Hours",
items: [
title: "Hours", items: [
{ label: "Monday - Friday: 9 AM - 5 PM", href: "#" },
{ label: "Saturday: 10 AM - 4 PM", href: "#" },
{ label: "Sunday: Closed", href: "#" },
@@ -75,33 +72,13 @@ export default function BookingPage() {
<FeatureCardThree
features={[
{
id: "01",
title: "Interior Detailing",
description: "Deep cleaning, leather conditioning, odor removal, and interior restoration to showroom condition",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552293.jpg?_wi=4",
imageAlt: "luxury car interior detailing leather cleaning professional",
},
id: "01", title: "Interior Detailing", description: "Deep cleaning, leather conditioning, odor removal, and interior restoration to showroom condition", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552293.jpg", imageAlt: "luxury car interior detailing leather cleaning professional"},
{
id: "02",
title: "Exterior Detailing",
description: "Hand wash, polishing, waxing, and premium protection coating for flawless paint",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193629.jpg?_wi=4",
imageAlt: "luxury car exterior hand wash polishing waxing",
},
id: "02", title: "Exterior Detailing", description: "Hand wash, polishing, waxing, and premium protection coating for flawless paint", imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193629.jpg", imageAlt: "luxury car exterior hand wash polishing waxing"},
{
id: "03",
title: "Ceramic Coating",
description: "Long-lasting paint protection with high gloss finish and hydrophobic properties",
imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22285.jpg?_wi=4",
imageAlt: "ceramic coating application luxury car paint protection",
},
id: "03", title: "Ceramic Coating", description: "Long-lasting paint protection with high gloss finish and hydrophobic properties", imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22285.jpg", imageAlt: "ceramic coating application luxury car paint protection"},
{
id: "04",
title: "Paint Correction",
description: "Professional removal of scratches, swirl marks, and restoration of original paint",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193625.jpg?_wi=3",
imageAlt: "paint correction professional scratch removal automotive",
},
id: "04", title: "Paint Correction", description: "Professional removal of scratches, swirl marks, and restoration of original paint", imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193625.jpg", imageAlt: "paint correction professional scratch removal automotive"},
]}
title="Premium Services"
description="Specialized detailing and protection services for your luxury vehicle"
@@ -118,10 +95,10 @@ export default function BookingPage() {
tag="Book Your Appointment"
title="Schedule Premium Detailing Service"
description="Reserve your luxury vehicle's transformation with our expert detailing team. Premium appointments available Monday through Saturday."
tagIcon="Calendar"
tagIcon={Calendar}
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/man-sitting-car-night_23-2149001285.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/man-sitting-car-night_23-2149001285.jpg"
mediaPosition="right"
inputPlaceholder="your@email.com"
buttonText="Request Appointment"

View File

@@ -17,8 +17,7 @@ const navItems = [
const footerColumns = [
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Interior Detailing", href: "/" },
{ label: "Exterior Detailing", href: "/" },
{ label: "Ceramic Coating", href: "/" },
@@ -26,8 +25,7 @@ const footerColumns = [
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/service-areas" },
{ label: "Gallery", href: "/" },
{ label: "Reviews", href: "/" },
@@ -35,8 +33,7 @@ const footerColumns = [
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Book Appointment", href: "/contact" },
{ label: "Phone: +1 562-644-9348", href: "tel:+15626449348" },
{ label: "12333 Woodruff Ave, Downey, CA 90241", href: "#" },
@@ -44,8 +41,7 @@ const footerColumns = [
],
},
{
title: "Hours",
items: [
title: "Hours", items: [
{ label: "Monday - Friday: 9 AM - 5 PM", href: "#" },
{ label: "Saturday: 10 AM - 4 PM", href: "#" },
{ label: "Sunday: Closed", href: "#" },
@@ -79,11 +75,12 @@ export default function ContactPage() {
description="Ready to experience premium auto detailing? Reach out to our team today. We're here to answer any questions about our services and schedule your luxury vehicle's transformation."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-choosing-car-show-room_1303-15204.jpg?_wi=5"
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-choosing-car-show-room_1303-15204.jpg"
mediaPosition="right"
inputPlaceholder="your@luxury-email.com"
buttonText="Send Message"
termsText="We'll respond to your inquiry within 24 business hours. Your information is secure and will never be shared."
mediaAnimation="none"
/>
</div>
@@ -93,24 +90,16 @@ export default function ContactPage() {
metrics={[
{
icon: Phone,
label: "Phone",
value: "+1 562-644-9348",
},
label: "Phone", value: "+1 562-644-9348"},
{
icon: MapPin,
label: "Location",
value: "Downey, CA",
},
label: "Location", value: "Downey, CA"},
{
icon: Clock,
label: "Response Time",
value: "24 Hours",
},
label: "Response Time", value: "24 Hours"},
{
icon: Phone,
label: "Direct Text",
value: "SMS Available",
},
label: "Direct Text", value: "SMS Available"},
]}
useInvertedBackground={true}
metricsAnimation="slide-up"
@@ -124,26 +113,11 @@ export default function ContactPage() {
tag="Booking Methods"
features={[
{
id: "01",
title: "Phone Booking",
description: "Call us directly at +1 562-644-9348 to discuss your vehicle's needs and schedule an appointment",
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-car-showroom-choosing-car_1303-18952.jpg?_wi=4",
imageAlt: "Phone booking method",
},
id: "01", title: "Phone Booking", description: "Call us directly at +1 562-644-9348 to discuss your vehicle's needs and schedule an appointment", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-car-showroom-choosing-car_1303-18952.jpg", imageAlt: "Phone booking method"},
{
id: "02",
title: "Text Message",
description: "Send us a text with your preferred dates and vehicle details for quick booking confirmation",
imageSrc: "http://img.b2bpic.net/free-photo/car-beautiful-sitting-embrace-carlo_1304-2608.jpg?_wi=4",
imageAlt: "Text booking option",
},
id: "02", title: "Text Message", description: "Send us a text with your preferred dates and vehicle details for quick booking confirmation", imageSrc: "http://img.b2bpic.net/free-photo/car-beautiful-sitting-embrace-carlo_1304-2608.jpg", imageAlt: "Text booking option"},
{
id: "03",
title: "Email Contact",
description: "Submit a detailed inquiry via our contact form with photos of your vehicle for personalized recommendations",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-taillights-from-vintage-cars-with-vibrant-colors_181624-15201.jpg?_wi=4",
imageAlt: "Email contact option",
},
id: "03", title: "Email Contact", description: "Submit a detailed inquiry via our contact form with photos of your vehicle for personalized recommendations", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-taillights-from-vintage-cars-with-vibrant-colors_181624-15201.jpg", imageAlt: "Email contact option"},
]}
textboxLayout="default"
animationType="slide-up"

View File

@@ -20,8 +20,7 @@ const navItems = [
const footerColumns = [
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Interior Detailing", href: "#services" },
{ label: "Exterior Detailing", href: "#services" },
{ label: "Ceramic Coating", href: "#services" },
@@ -29,8 +28,7 @@ const footerColumns = [
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/service-areas" },
{ label: "Gallery", href: "#gallery" },
{ label: "Reviews", href: "#reviews" },
@@ -38,8 +36,7 @@ const footerColumns = [
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Book Appointment", href: "/contact" },
{ label: "Phone: +1 562-644-9348", href: "tel:+15626449348" },
{ label: "12333 Woodruff Ave, Downey, CA 90241", href: "#" },
@@ -47,8 +44,7 @@ const footerColumns = [
],
},
{
title: "Hours",
items: [
title: "Hours", items: [
{ label: "Monday - Friday: 9 AM - 5 PM", href: "#" },
{ label: "Saturday: 10 AM - 4 PM", href: "#" },
{ label: "Sunday: Closed", href: "#" },
@@ -83,7 +79,7 @@ export default function HomePage() {
{ text: "Book Appointment", href: "/contact" },
{ text: "Call Now", href: "tel:+15626449348" },
]}
imageSrc="http://img.b2bpic.net/free-photo/man-sitting-car-night_23-2149001285.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/man-sitting-car-night_23-2149001285.jpg"
imageAlt="Premium luxury car with cinematic lighting"
showDimOverlay={true}
className="min-h-screen"
@@ -97,33 +93,13 @@ export default function HomePage() {
tag="Expert Services"
features={[
{
id: "01",
title: "Interior Detailing",
description: "Deep cleaning, leather conditioning, odor removal, and interior restoration to showroom condition",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552293.jpg?_wi=1",
imageAlt: "luxury car interior detailing leather cleaning professional",
},
id: "01", title: "Interior Detailing", description: "Deep cleaning, leather conditioning, odor removal, and interior restoration to showroom condition", imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552293.jpg", imageAlt: "luxury car interior detailing leather cleaning professional"},
{
id: "02",
title: "Exterior Detailing",
description: "Hand wash, polishing, waxing, and premium protection coating for flawless paint",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193629.jpg?_wi=1",
imageAlt: "luxury car exterior hand wash polishing waxing",
},
id: "02", title: "Exterior Detailing", description: "Hand wash, polishing, waxing, and premium protection coating for flawless paint", imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193629.jpg", imageAlt: "luxury car exterior hand wash polishing waxing"},
{
id: "03",
title: "Ceramic Coating",
description: "Long-lasting paint protection with high gloss finish and hydrophobic properties",
imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22285.jpg?_wi=1",
imageAlt: "ceramic coating application luxury car paint protection",
},
id: "03", title: "Ceramic Coating", description: "Long-lasting paint protection with high gloss finish and hydrophobic properties", imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22285.jpg", imageAlt: "ceramic coating application luxury car paint protection"},
{
id: "04",
title: "Paint Correction",
description: "Professional removal of scratches, swirl marks, and restoration of original paint",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193625.jpg?_wi=1",
imageAlt: "paint correction professional scratch removal automotive",
},
id: "04", title: "Paint Correction", description: "Professional removal of scratches, swirl marks, and restoration of original paint", imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193625.jpg", imageAlt: "paint correction professional scratch removal automotive"},
]}
textboxLayout="default"
animationType="slide-up"
@@ -138,24 +114,16 @@ export default function HomePage() {
metrics={[
{
icon: Sparkles,
label: "Showroom Quality",
value: "Perfect",
},
label: "Showroom Quality", value: "Perfect"},
{
icon: Shield,
label: "Professional Service",
value: "15+ Years",
},
label: "Professional Service", value: "15+ Years"},
{
icon: Star,
label: "Client Satisfaction",
value: "98%",
},
label: "Client Satisfaction", value: "98%"},
{
icon: Award,
label: "Premium Brands Served",
value: "50+",
},
label: "Premium Brands Served", value: "50+"},
]}
useInvertedBackground={true}
metricsAnimation="slide-up"
@@ -169,47 +137,17 @@ export default function HomePage() {
tag="Gallery"
products={[
{
id: "1",
name: "Rolls Royce Ghost",
price: "Before & After",
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-car-showroom-choosing-car_1303-18952.jpg?_wi=1",
imageAlt: "Rolls Royce luxury automobile cinematic presentation",
},
id: "1", name: "Rolls Royce Ghost", price: "Before & After", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-car-showroom-choosing-car_1303-18952.jpg", imageAlt: "Rolls Royce luxury automobile cinematic presentation"},
{
id: "2",
name: "Lamborghini Huracán",
price: "Before & After",
imageSrc: "http://img.b2bpic.net/free-photo/car-beautiful-sitting-embrace-carlo_1304-2608.jpg?_wi=1",
imageAlt: "Lamborghini sports car luxury automobile showcase",
},
id: "2", name: "Lamborghini Huracán", price: "Before & After", imageSrc: "http://img.b2bpic.net/free-photo/car-beautiful-sitting-embrace-carlo_1304-2608.jpg", imageAlt: "Lamborghini sports car luxury automobile showcase"},
{
id: "3",
name: "Ferrari F8 Tributo",
price: "Before & After",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-taillights-from-vintage-cars-with-vibrant-colors_181624-15201.jpg?_wi=1",
imageAlt: "Ferrari sports car luxury automobile presentation",
},
id: "3", name: "Ferrari F8 Tributo", price: "Before & After", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-taillights-from-vintage-cars-with-vibrant-colors_181624-15201.jpg", imageAlt: "Ferrari sports car luxury automobile presentation"},
{
id: "4",
name: "Porsche 911 Turbo",
price: "Before & After",
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-gray-car-driving-down-road-with-long-exposure_181624-59645.jpg?_wi=1",
imageAlt: "Porsche 911 luxury sports car premium showcase",
},
id: "4", name: "Porsche 911 Turbo", price: "Before & After", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-gray-car-driving-down-road-with-long-exposure_181624-59645.jpg", imageAlt: "Porsche 911 luxury sports car premium showcase"},
{
id: "5",
name: "Mercedes G-Wagon",
price: "Before & After",
imageSrc: "http://img.b2bpic.net/free-photo/just-married-couple-with-their-car_23-2149479848.jpg?_wi=1",
imageAlt: "Mercedes G-Wagon luxury SUV premium showcase",
},
id: "5", name: "Mercedes G-Wagon", price: "Before & After", imageSrc: "http://img.b2bpic.net/free-photo/just-married-couple-with-their-car_23-2149479848.jpg", imageAlt: "Mercedes G-Wagon luxury SUV premium showcase"},
{
id: "6",
name: "Bugatti Chiron",
price: "Before & After",
imageSrc: "http://img.b2bpic.net/free-photo/white-coupe-sport-car-parking-bridge_114579-4006.jpg?_wi=1",
imageAlt: "Bugatti Chiron hypercar luxury automobile showcase",
},
id: "6", name: "Bugatti Chiron", price: "Before & After", imageSrc: "http://img.b2bpic.net/free-photo/white-coupe-sport-car-parking-bridge_114579-4006.jpg", imageAlt: "Bugatti Chiron hypercar luxury automobile showcase"},
]}
textboxLayout="default"
animationType="slide-up"
@@ -225,41 +163,17 @@ export default function HomePage() {
tag="Client Reviews"
testimonials={[
{
id: "1",
name: "Michael Torres",
role: "Rolls Royce Owner",
company: "Executive Collector",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg?_wi=1",
imageAlt: "professional business owner portrait executive photo",
},
id: "1", name: "Michael Torres", role: "Rolls Royce Owner", company: "Executive Collector", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg", imageAlt: "professional business owner portrait executive photo"},
{
id: "2",
name: "Jennifer Wu",
role: "Entrepreneur",
company: "Ferrari & Lamborghini Enthusiast",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-by-skyscraper-using-phone_1303-11016.jpg?_wi=1",
imageAlt: "professional woman entrepreneur portrait photography",
},
id: "2", name: "Jennifer Wu", role: "Entrepreneur", company: "Ferrari & Lamborghini Enthusiast", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-by-skyscraper-using-phone_1303-11016.jpg", imageAlt: "professional woman entrepreneur portrait photography"},
{
id: "3",
name: "David Martinez",
role: "Sports Car Collector",
company: "Porsche & Bugatti Owner",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg?_wi=1",
imageAlt: "professional man portrait executive business headshot",
},
id: "3", name: "David Martinez", role: "Sports Car Collector", company: "Porsche & Bugatti Owner", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg", imageAlt: "professional man portrait executive business headshot"},
{
id: "4",
name: "Sarah Chen",
role: "Luxury Lifestyle Manager",
company: "Premium Vehicle Curator",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-fancy-dress-walking-down-street-fashion-beauty-makeup-evening-dress-smiling-girl-posing-model-luxury-wearing-accessories-blonde-volume-hair-lipstick-eyes-perfect_343629-173.jpg?_wi=1",
imageAlt: "professional woman luxury lifestyle portrait",
},
id: "4", name: "Sarah Chen", role: "Luxury Lifestyle Manager", company: "Premium Vehicle Curator", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-fancy-dress-walking-down-street-fashion-beauty-makeup-evening-dress-smiling-girl-posing-model-luxury-wearing-accessories-blonde-volume-hair-lipstick-eyes-perfect_343629-173.jpg", imageAlt: "professional woman luxury lifestyle portrait"},
]}
kpiItems={[
{ value: "500+", label: "Luxury Vehicles Detailed" },
@@ -280,11 +194,12 @@ export default function HomePage() {
tagIcon={Crown}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-choosing-car-show-room_1303-15204.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-choosing-car-show-room_1303-15204.jpg"
mediaPosition="right"
inputPlaceholder="your@luxury-email.com"
buttonText="Claim VIP Access"
termsText="We respect your privacy. Unsubscribe at any time. Exclusive offers for verified luxury vehicle owners."
mediaAnimation="none"
/>
</div>

View File

@@ -5,6 +5,7 @@ import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleAp
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { Crown } from "lucide-react";
import Link from "next/link";
export default function ReviewsPage() {
@@ -17,8 +18,7 @@ export default function ReviewsPage() {
const footerColumns = [
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Interior Detailing", href: "#" },
{ label: "Exterior Detailing", href: "#" },
{ label: "Ceramic Coating", href: "#" },
@@ -26,8 +26,7 @@ export default function ReviewsPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Gallery", href: "#" },
{ label: "Reviews", href: "/reviews" },
@@ -35,8 +34,7 @@ export default function ReviewsPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Book Appointment", href: "/booking" },
{ label: "Phone: +1 562-644-9348", href: "tel:+15626449348" },
{ label: "12333 Woodruff Ave, Downey, CA 90241", href: "#" },
@@ -44,8 +42,7 @@ export default function ReviewsPage() {
],
},
{
title: "Hours",
items: [
title: "Hours", items: [
{ label: "Monday - Friday: 9 AM - 5 PM", href: "#" },
{ label: "Saturday: 10 AM - 4 PM", href: "#" },
{ label: "Sunday: Closed", href: "#" },
@@ -75,55 +72,25 @@ export default function ReviewsPage() {
<TestimonialCardSixteen
testimonials={[
{
id: "1",
name: "Michael Torres",
role: "Rolls Royce Owner",
company: "Executive Collector",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg?_wi=4",
imageAlt: "professional business owner portrait executive photo",
},
id: "1", name: "Michael Torres", role: "Rolls Royce Owner", company: "Executive Collector", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/confident-successful-middle-aged-business-leader_1262-4872.jpg", imageAlt: "professional business owner portrait executive photo"},
{
id: "2",
name: "Jennifer Wu",
role: "Entrepreneur",
company: "Ferrari & Lamborghini Enthusiast",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-by-skyscraper-using-phone_1303-11016.jpg?_wi=4",
imageAlt: "professional woman entrepreneur portrait photography",
},
id: "2", name: "Jennifer Wu", role: "Entrepreneur", company: "Ferrari & Lamborghini Enthusiast", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-by-skyscraper-using-phone_1303-11016.jpg", imageAlt: "professional woman entrepreneur portrait photography"},
{
id: "3",
name: "David Martinez",
role: "Sports Car Collector",
company: "Porsche & Bugatti Owner",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg?_wi=4",
imageAlt: "professional man portrait executive business headshot",
},
id: "3", name: "David Martinez", role: "Sports Car Collector", company: "Porsche & Bugatti Owner", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg", imageAlt: "professional man portrait executive business headshot"},
{
id: "4",
name: "Sarah Chen",
role: "Luxury Lifestyle Manager",
company: "Premium Vehicle Curator",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-fancy-dress-walking-down-street-fashion-beauty-makeup-evening-dress-smiling-girl-posing-model-luxury-wearing-accessories-blonde-volume-hair-lipstick-eyes-perfect_343629-173.jpg?_wi=2",
imageAlt: "professional woman luxury lifestyle portrait",
},
id: "4", name: "Sarah Chen", role: "Luxury Lifestyle Manager", company: "Premium Vehicle Curator", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-fancy-dress-walking-down-street-fashion-beauty-makeup-evening-dress-smiling-girl-posing-model-luxury-wearing-accessories-blonde-volume-hair-lipstick-eyes-perfect_343629-173.jpg", imageAlt: "professional woman luxury lifestyle portrait"},
]}
kpiItems={[
{
value: "500+",
label: "Luxury Vehicles Detailed",
},
value: "500+", label: "Luxury Vehicles Detailed"},
{
value: "99%",
label: "Client Satisfaction Rate",
},
value: "99%", label: "Client Satisfaction Rate"},
{
value: "15+",
label: "Years of Excellence",
},
value: "15+", label: "Years of Excellence"},
]}
title="What Our Luxury Clients Say"
description="Trusted by Downey's most discerning luxury car owners"
@@ -139,10 +106,10 @@ export default function ReviewsPage() {
tag="Exclusive Offers"
title="Join Our VIP Detailing Club"
description="Get exclusive discounts, early access to new services, and premium care tips delivered to your inbox"
tagIcon="Crown"
tagIcon={Crown}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-choosing-car-show-room_1303-15204.jpg?_wi=3"
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-choosing-car-show-room_1303-15204.jpg"
mediaPosition="right"
inputPlaceholder="your@luxury-email.com"
buttonText="Claim VIP Access"

View File

@@ -17,8 +17,7 @@ const navItems = [
const footerColumns = [
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Interior Detailing", href: "/" },
{ label: "Exterior Detailing", href: "/" },
{ label: "Ceramic Coating", href: "/" },
@@ -26,8 +25,7 @@ const footerColumns = [
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/service-areas" },
{ label: "Gallery", href: "/" },
{ label: "Reviews", href: "/" },
@@ -35,8 +33,7 @@ const footerColumns = [
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Book Appointment", href: "/contact" },
{ label: "Phone: +1 562-644-9348", href: "tel:+15626449348" },
{ label: "12333 Woodruff Ave, Downey, CA 90241", href: "#" },
@@ -44,8 +41,7 @@ const footerColumns = [
],
},
{
title: "Hours",
items: [
title: "Hours", items: [
{ label: "Monday - Friday: 9 AM - 5 PM", href: "#" },
{ label: "Saturday: 10 AM - 4 PM", href: "#" },
{ label: "Sunday: Closed", href: "#" },
@@ -79,33 +75,13 @@ export default function ServiceAreasPage() {
tag="Coverage Map"
features={[
{
id: "01",
title: "Downey",
description: "Our home base with full-service detailing facility and mobile service availability throughout the city",
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-car-showroom-choosing-car_1303-18952.jpg?_wi=3",
imageAlt: "Downey California service area",
},
id: "01", title: "Downey", description: "Our home base with full-service detailing facility and mobile service availability throughout the city", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-car-showroom-choosing-car_1303-18952.jpg", imageAlt: "Downey California service area"},
{
id: "02",
title: "Long Beach & Signal Hill",
description: "Professional detailing services available for luxury vehicles in these premium areas",
imageSrc: "http://img.b2bpic.net/free-photo/car-beautiful-sitting-embrace-carlo_1304-2608.jpg?_wi=3",
imageAlt: "Long Beach service area",
},
id: "02", title: "Long Beach & Signal Hill", description: "Professional detailing services available for luxury vehicles in these premium areas", imageSrc: "http://img.b2bpic.net/free-photo/car-beautiful-sitting-embrace-carlo_1304-2608.jpg", imageAlt: "Long Beach service area"},
{
id: "03",
title: "Lakewood & Cerritos",
description: "Convenient mobile detailing and facility services for your high-end vehicles",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-taillights-from-vintage-cars-with-vibrant-colors_181624-15201.jpg?_wi=3",
imageAlt: "Lakewood service area",
},
id: "03", title: "Lakewood & Cerritos", description: "Convenient mobile detailing and facility services for your high-end vehicles", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-taillights-from-vintage-cars-with-vibrant-colors_181624-15201.jpg", imageAlt: "Lakewood service area"},
{
id: "04",
title: "Paramount & Bellflower",
description: "Expert ceramic coating and paint correction services delivered to your location",
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-gray-car-driving-down-road-with-long-exposure_181624-59645.jpg?_wi=3",
imageAlt: "Paramount service area",
},
id: "04", title: "Paramount & Bellflower", description: "Expert ceramic coating and paint correction services delivered to your location", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-gray-car-driving-down-road-with-long-exposure_181624-59645.jpg", imageAlt: "Paramount service area"},
]}
textboxLayout="default"
animationType="slide-up"
@@ -120,24 +96,16 @@ export default function ServiceAreasPage() {
metrics={[
{
icon: MapPin,
label: "Service Radius",
value: "30+ Miles",
},
label: "Service Radius", value: "30+ Miles"},
{
icon: Truck,
label: "Mobile Service",
value: "Full Fleet",
},
label: "Mobile Service", value: "Full Fleet"},
{
icon: Clock,
label: "Same-Day Appointments",
value: "Available",
},
label: "Same-Day Appointments", value: "Available"},
{
icon: MapPin,
label: "Locations Served",
value: "15+ Cities",
},
label: "Locations Served", value: "15+ Cities"},
]}
useInvertedBackground={true}
metricsAnimation="slide-up"
@@ -151,11 +119,12 @@ export default function ServiceAreasPage() {
description="Contact us today to book an appointment for your luxury vehicle. We offer flexible scheduling and convenient service options for customers throughout Los Angeles County."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-choosing-car-show-room_1303-15204.jpg?_wi=4"
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-choosing-car-show-room_1303-15204.jpg"
mediaPosition="right"
inputPlaceholder="your@luxury-email.com"
buttonText="Schedule Now"
termsText="We serve areas within a 30-mile radius of Downey, California. Contact us for special requests outside our standard service area."
mediaAnimation="none"
/>
</div>