7 Commits

Author SHA1 Message Date
d2c18be755 Merge version_4 into main
Merge version_4 into main
2026-05-11 00:22:17 +00:00
61233a23ae Update src/app/page.tsx 2026-05-11 00:22:14 +00:00
7c6c5b6816 Merge version_3 into main
Merge version_3 into main
2026-05-11 00:18:30 +00:00
119df8ab46 Update src/app/page.tsx 2026-05-11 00:18:24 +00:00
704fdf9960 Merge version_2 into main
Merge version_2 into main
2026-05-11 00:13:35 +00:00
4fcac07843 Merge version_2 into main
Merge version_2 into main
2026-05-11 00:13:07 +00:00
4bb94b4cbe Merge version_2 into main
Merge version_2 into main
2026-05-11 00:12:36 +00:00

View File

@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "Pricing", id: "pricing" },
{ name: "Booking", id: "contact" },
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYOnnGJ3srKWlIbL2mXjJewGWm/uploaded-1778458923565-qfvihb1c.png"
brandName="NEAT"
/>
</div>
@@ -94,9 +95,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"]
}
]}
/>
</div>
@@ -129,4 +139,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}