Merge version_2 into main #1

Merged
bender merged 1 commits from version_2 into main 2026-04-06 21:48:40 +00:00

View File

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