diff --git a/src/app/page.tsx b/src/app/page.tsx index 6f9f02c..9bd1803 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -59,7 +59,7 @@ export default function LandingPage() { tagIcon={Sparkles} tagAnimation="slide-up" buttons={[ - { text: "Book Now", href: "#contact" }, + { text: "Book Your Detailing", href: "#contact" }, { text: "Learn More", href: "#services" }, ]} buttonAnimation="slide-up" @@ -78,13 +78,16 @@ export default function LandingPage() { stats: [ { title: "Vehicles Detailed", values: [500, 750, 1200], - description: "Happy customers served"}, + description: "Happy customers served" + }, { title: "Years Experience", values: [10, 15, 20], - description: "In professional detailing"}, + description: "In professional detailing" + }, { title: "5-Star Rating", values: [98, 99, 100], - valuePrefix: "", valueSuffix: "%", description: "Customer satisfaction"}, + valuePrefix: "", valueSuffix: "%", description: "Customer satisfaction" + }, ], chartTitle: "Quality Consistency", chartData: [ { value: 95 }, @@ -98,7 +101,8 @@ export default function LandingPage() { { icon: CheckCircle, title: "Interior Detailing", status: "Premium" }, { icon: CheckCircle, title: "Ceramic Coating", status: "Available" }, ], - searchPlaceholder: "Ask about services..."}} + searchPlaceholder: "Ask about services..." + }} /> @@ -150,17 +154,20 @@ export default function LandingPage() { features={[ { id: "quality", label: "Quality", title: "Premium Results Every Time", items: [ - "Professional-grade equipment", "Expert techniques and training", "Attention to detail in every service"], + "Professional-grade equipment", "Expert techniques and training", "Attention to detail in every service" + ], buttons: [{ text: "See Our Work", href: "#" }], }, { id: "service", label: "Service", title: "Fast, Reliable, Convenient", items: [ - "Quick turnaround times", "Flexible scheduling options", "Professional customer care"], + "Quick turnaround times", "Flexible scheduling options", "Professional customer care" + ], buttons: [{ text: "Schedule Now", href: "#contact" }], }, { id: "value", label: "Value", title: "Best Prices in the Area", items: [ - "Competitive pricing", "No hidden fees", "Loyalty rewards program"], + "Competitive pricing", "No hidden fees", "Loyalty rewards program" + ], buttons: [{ text: "View Pricing", href: "#pricing" }], }, ]} @@ -178,17 +185,20 @@ export default function LandingPage() { { id: "exterior", tag: "Exterior Detailing", price: "$149", period: "per service", description: "Complete exterior wash and protection for your vehicle's exterior surfaces.", button: { text: "Book Exterior", href: "#contact" }, featuresTitle: "Includes:", features: [ - "Professional hand wash", "Clay bar treatment", "Wax application", "Tire and rim cleaning", "Undercarriage rinse"], + "Professional hand wash", "Clay bar treatment", "Wax application", "Tire and rim cleaning", "Undercarriage rinse" + ], }, { id: "interior", tag: "Interior Detailing", price: "$199", period: "per service", description: "Thorough cleaning and conditioning of your vehicle's interior for a fresh feel.", button: { text: "Book Interior", href: "#contact" }, featuresTitle: "Includes:", features: [ - "Vacuum and shampoo", "Leather conditioning", "Window cleaning", "Dashboard treatment", "Air freshener"], + "Vacuum and shampoo", "Leather conditioning", "Window cleaning", "Dashboard treatment", "Air freshener" + ], }, { id: "full-package", tag: "Complete Package", price: "$329", period: "per service", description: "Ultimate care for your vehicle. Interior and exterior excellence in one comprehensive service.", button: { text: "Book Full Package", href: "#contact" }, featuresTitle: "Includes All Services:", features: [ - "Complete exterior detailing", "Complete interior detailing", "Ceramic coating option", "Engine bay cleaning", "Priority scheduling"], + "Complete exterior detailing", "Complete interior detailing", "Ceramic coating option", "Engine bay cleaning", "Priority scheduling" + ], }, ]} /> @@ -198,17 +208,23 @@ export default function LandingPage() {