5 Commits

Author SHA1 Message Date
3266c1a667 Update src/app/schedule/page.tsx 2026-03-25 01:06:16 +00:00
6e170834e1 Update src/app/page.tsx 2026-03-25 01:06:15 +00:00
40b42be76c Update src/app/blackout-times/page.tsx 2026-03-25 01:06:15 +00:00
313b9d9320 Update src/app/appointments/page.tsx 2026-03-25 01:06:14 +00:00
a66cf56a59 Merge version_4 into main
Merge version_4 into main
2026-03-25 01:01:25 +00:00
4 changed files with 27 additions and 21 deletions

View File

@@ -25,13 +25,13 @@ export default function AppointmentsPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Services", id: "/#services" }, { name: "Services", id: "#services" },
{ name: "Why Us", id: "/#why-us" }, { name: "Why Us", id: "#why-us" },
{ name: "FAQ", id: "/#faq" }, { name: "FAQ", id: "#faq" },
{ name: "Appointments", id: "/appointments" } { name: "Appointments", id: "/appointments" }
]} ]}
button={{ button={{
text: "Schedule Now", href: "/#contact" text: "Schedule Now", href: "/schedule"
}} }}
brandName="Detail Pros" brandName="Detail Pros"
/> />

View File

@@ -25,18 +25,20 @@ export default function BlackoutTimesPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", id: "home"}, name: "Home", id: "/"},
{ {
name: "Services", id: "services"}, name: "Services", id: "#services"},
{ {
name: "Why Us", id: "why-us"}, name: "Why Us", id: "#why-us"},
{ {
name: "FAQ", id: "faq"}, name: "FAQ", id: "#faq"},
{ {
name: "Manage Availability", id: "blackout-times"} name: "Appointments", id: "/appointments"},
{
name: "Manage Availability", id: "/blackout-times"}
]} ]}
button={{ button={{
text: "Schedule Now", href: "#contact"}} text: "Schedule Now", href: "/schedule"}}
brandName="Detail Pros" brandName="Detail Pros"
/> />
</div> </div>

View File

@@ -31,18 +31,20 @@ export default function LandingPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", id: "home"}, name: "Home", id: "/"},
{ {
name: "Services", id: "services"}, name: "Services", id: "#services"},
{ {
name: "Why Us", id: "why-us"}, name: "Why Us", id: "#why-us"},
{ {
name: "FAQ", id: "faq"}, name: "FAQ", id: "#faq"},
{ {
name: "Manage Availability", id: "blackout-times"} name: "Appointments", id: "/appointments"},
{
name: "Manage Availability", id: "/blackout-times"}
]} ]}
button={{ button={{
text: "Schedule Now", href: "#contact"}} text: "Schedule Now", href: "/schedule"}}
brandName="Detail Pros" brandName="Detail Pros"
/> />
</div> </div>
@@ -134,7 +136,7 @@ export default function LandingPage() {
}, },
], ],
features: [ features: [
"Every perk from Standard detail", "Deeper interior cleaning (seats, carpets, buildup, and grime)", "More detailed exterior finish and shine", "*Final price depends on vehicle size and condition." "Everything in Standard", "Deeper interior cleaning (seats, carpets, buildup, and grime)", "More detailed exterior finish and shine", "*Final price depends on vehicle size and condition."
], ],
}, },
{ {

View File

@@ -42,10 +42,12 @@ export default function SchedulePage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ name: "Home", id: "home" }, { name: "Home", id: "/" },
{ name: "Services", id: "services" }, { name: "Services", id: "#services" },
{ name: "Why Us", id: "why-us" }, { name: "Why Us", id: "#why-us" },
{ name: "FAQ", id: "faq" } { name: "FAQ", id: "#faq" },
{ name: "Appointments", id: "/appointments" },
{ name: "Manage Availability", id: "/blackout-times"}
]} ]}
button={{ button={{
text: "Schedule Now", href: "/schedule"}} text: "Schedule Now", href: "/schedule"}}