From 5b4251f4aa3e32c6cd8b419a58d78b7301bed538 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 27 Apr 2026 23:45:17 +0000 Subject: [PATCH 1/2] Add src/app/booking/page.tsx --- src/app/booking/page.tsx | 69 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 src/app/booking/page.tsx diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx new file mode 100644 index 0000000..39c6a2c --- /dev/null +++ b/src/app/booking/page.tsx @@ -0,0 +1,69 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Calendar } from 'lucide-react'; + +export default function BookingPage() { + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1 From 5e727aead396c2eb525449d125f7c1660f263a37 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 27 Apr 2026 23:45:18 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5ccf166..59d2f9b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,7 +38,7 @@ export default function LandingPage() { { name: "FAQ", id: "faq" } ]} button={{ - text: "Book Now", href: "contact" + text: "Book Now", href: "/booking" }} /> @@ -51,8 +51,8 @@ export default function LandingPage() { tagIcon={Scissors} background={{ variant: "plain" }} buttons={[ - { text: "Book with Your Barber", href: "contact" }, - { text: "View Services", href: "cuts" } + { text: "Book with Your Barber", href: "/booking" }, + { text: "View Services", href: "#cuts" } ]} buttonAnimation="slide-up" mediaItems={[ @@ -162,11 +162,12 @@ export default function LandingPage() { window.location.href = '/booking'} /> @@ -176,7 +177,7 @@ export default function LandingPage() { columns={[ { title: "Visit", items: [{ label: "Location", href: "#" }, { label: "Directions", href: "#" }] }, { title: "Services", items: [{ label: "Cuts", href: "#" }, { label: "Shaves", href: "#" }] }, - { title: "Business", items: [{ label: "Book Now", href: "#" }, { label: "Contact", href: "#" }] } + { title: "Business", items: [{ label: "Book Now", href: "/booking" }, { label: "Contact", href: "#contact" }] } ]} /> -- 2.49.1