diff --git a/src/app/page.tsx b/src/app/page.tsx index 474b6eb..3811955 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -94,9 +94,18 @@ export default function LandingPage() { title="Professional Services" description="Tailored care for your vehicle type." plans={[ - { id: "sedan", tag: "Standard", price: "$120", period: "avg", description: "For mid-size cars", button: { text: "Select" }, featuresTitle: "Included", features: ["Exterior Wash", "Vacuum", "Windows", "Tire Shine"] }, - { id: "suv", tag: "Popular", price: "$160", period: "avg", description: "For SUVs & Crossovers", button: { text: "Select" }, featuresTitle: "Included", features: ["Everything in Standard", "Deep carpet clean", "Dash conditioning"] }, - { id: "truck", tag: "Large", price: "$200", period: "avg", description: "For Full-size Trucks", button: { text: "Select" }, featuresTitle: "Included", features: ["Everything in SUV", "Engine wipe down", "Ceramic spray sealant"] }, + { + id: "interior", tag: "Interior Detail", price: "$140 - $200", period: "per service", description: "Deep cleaned, vacuumed, wiped down, and refreshed interior.", button: { text: "Select Plan" }, + featuresTitle: "By Vehicle Type", features: ["Sedan: $140", "SUV: $160", "Truck: $200"] + }, + { + id: "exterior", tag: "Exterior Detail", price: "$40 - $80", period: "per service", description: "Professional hand washed, dried, and polished exterior.", button: { text: "Select Plan" }, + featuresTitle: "By Vehicle Type", features: ["Sedan: $40", "SUV: $60", "Truck: $80"] + }, + { + id: "full", tag: "Full Detail", price: "$180 - $280", period: "per service", description: "The complete experience inside and out.", button: { text: "Select Plan" }, + featuresTitle: "By Vehicle Type", features: ["Sedan: $180", "SUV: $220", "Truck: $280"] + } ]} /> @@ -129,4 +138,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file