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 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" }] } ]} />