2 Commits

Author SHA1 Message Date
b59b37e710 Merge version_2 into main
Merge version_2 into main
2026-04-06 21:48:39 +00:00
4c4d84356a Update src/app/page.tsx 2026-04-06 21:48:33 +00:00

View File

@@ -30,21 +30,13 @@ export default function LandingPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "hero"},
id: "hero",
},
{ {
name: "About", name: "About", id: "about"},
id: "about",
},
{ {
name: "Pricing", name: "Pricing", id: "pricing"},
id: "pricing",
},
{ {
name: "Contact", name: "Contact", id: "contact"},
id: "contact",
},
]} ]}
brandName="Doorstep Detail" brandName="Doorstep Detail"
/> />
@@ -56,9 +48,7 @@ export default function LandingPage() {
description="Professional car detailing delivered to your home or office. Top-quality products, expert technique — no drop-offs, no waiting rooms." description="Professional car detailing delivered to your home or office. Top-quality products, expert technique — no drop-offs, no waiting rooms."
buttons={[ buttons={[
{ {
text: "Book a Detail", text: "Book a Detail", href: "#contact"},
href: "#contact",
},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/man-washing-car-carwash-station-wearing-orange-vest_651396-2008.jpg" imageSrc="http://img.b2bpic.net/free-photo/man-washing-car-carwash-station-wearing-orange-vest_651396-2008.jpg"
@@ -83,54 +73,27 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
plans={[ plans={[
{ {
id: "bronze", id: "bronze", name: "Bronze", price: "$99", features: [
name: "Bronze", "Exterior Hand Wash", "Interior Vacuum", "Windows Cleaned", "Tire Shine"],
price: "$99",
features: [
"Exterior Hand Wash",
"Interior Vacuum",
"Windows Cleaned",
"Tire Shine",
],
buttons: [ buttons: [
{ {
text: "Book Bronze", text: "Book Bronze", href: "#contact"},
href: "#contact",
},
], ],
}, },
{ {
id: "gold", id: "gold", name: "Gold", price: "$179", features: [
name: "Gold", "Everything in Bronze", "Interior Deep Clean", "Leather Conditioning", "Clay Bar Treatment"],
price: "$179",
features: [
"Everything in Bronze",
"Interior Deep Clean",
"Leather Conditioning",
"Clay Bar Treatment",
],
buttons: [ buttons: [
{ {
text: "Book Gold", text: "Book Gold", href: "#contact"},
href: "#contact",
},
], ],
}, },
{ {
id: "diamond", id: "diamond", name: "Diamond", price: "$299", features: [
name: "Diamond", "Everything in Gold", "Engine Bay Cleaning", "Paint Polishing", "Ceramic Sealant"],
price: "$299",
features: [
"Everything in Gold",
"Engine Bay Cleaning",
"Paint Polishing",
"Ceramic Sealant",
],
buttons: [ buttons: [
{ {
text: "Book Diamond", text: "Book Diamond", href: "#contact"},
href: "#contact",
},
], ],
}, },
]} ]}
@@ -144,14 +107,7 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
names={[ names={[
"Certified Detailer", "Certified Detailer", "Eco-Friendly Safe", "Award-Winning Quality", "Local Business", "Satisfaction Guarantee", "Expert Technique", "Professional Service"]}
"Eco-Friendly Safe",
"Award-Winning Quality",
"Local Business",
"Satisfaction Guarantee",
"Expert Technique",
"Professional Service",
]}
title="Trusted Excellence" title="Trusted Excellence"
description="Proudly serving the Chicagoland area with premium, eco-friendly standards." description="Proudly serving the Chicagoland area with premium, eco-friendly standards."
/> />
@@ -162,30 +118,15 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ testimonials={[
{ {
id: "1", id: "1", name: "Sarah J.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-short-hair_273609-15371.jpg"},
name: "Sarah J.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-short-hair_273609-15371.jpg",
},
{ {
id: "2", id: "2", name: "Mike T.", imageSrc: "http://img.b2bpic.net/free-photo/young-man-smiling-confident-looking-side-park_839833-20591.jpg"},
name: "Mike T.",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-smiling-confident-looking-side-park_839833-20591.jpg",
},
{ {
id: "3", id: "3", name: "David W.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-wearing-sunglasses_23-2150320979.jpg"},
name: "David W.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-wearing-sunglasses_23-2150320979.jpg",
},
{ {
id: "4", id: "4", name: "Emily P.", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-city_1157-16547.jpg"},
name: "Emily P.",
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-city_1157-16547.jpg",
},
{ {
id: "5", id: "5", name: "Jason R.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-smiling-middle-aged-woman_169016-26118.jpg"},
name: "Jason R.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-smiling-middle-aged-woman_169016-26118.jpg",
},
]} ]}
cardTitle="Client Experiences" cardTitle="Client Experiences"
cardTag="Reviews" cardTag="Reviews"
@@ -197,14 +138,11 @@ export default function LandingPage() {
<ContactText <ContactText
useInvertedBackground={true} useInvertedBackground={true}
background={{ background={{
variant: "sparkles-gradient", variant: "sparkles-gradient"}}
}}
text="Ready to transform your car? Book your detail session today at your convenience." text="Ready to transform your car? Book your detail session today at your convenience."
buttons={[ buttons={[
{ {
text: "Book Now", text: "Book Now", href: "mailto:hello@doorstepdetail.com"},
href: "mailto:hello@doorstepdetail.com",
},
]} ]}
/> />
</div> </div>
@@ -213,29 +151,19 @@ export default function LandingPage() {
<FooterSimple <FooterSimple
columns={[ columns={[
{ {
title: "Company", title: "Company", items: [
items: [
{ {
label: "About Us", label: "About Us", href: "#about"},
href: "#about",
},
{ {
label: "Services", label: "Services", href: "#pricing"},
href: "#pricing",
},
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ {
label: "Book Now", label: "Book Now", href: "#contact"},
href: "#contact",
},
{ {
label: "FAQ", label: "FAQ", href: "#"},
href: "#",
},
], ],
}, },
]} ]}
@@ -246,4 +174,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }