Merge version_5 into main #6

Merged
bender merged 4 commits from version_5 into main 2026-03-25 01:06:19 +00:00
4 changed files with 27 additions and 21 deletions

View File

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

View File

@@ -25,18 +25,20 @@ export default function BlackoutTimesPage() {
<NavbarStyleCentered
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={{
text: "Schedule Now", href: "#contact"}}
text: "Schedule Now", href: "/schedule"}}
brandName="Detail Pros"
/>
</div>

View File

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