diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx new file mode 100644 index 0000000..76ecfe9 --- /dev/null +++ b/src/app/booking/page.tsx @@ -0,0 +1,82 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +export default function BookingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index dd33fb8..30d723c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -39,7 +39,7 @@ export default function LandingPage() { name: "Contact", id: "contact"}, ]} button={{ - text: "Book Now", href: "#contact"}} + text: "Book Now", href: "/booking"}} brandName="Quick N’ Clean" /> @@ -67,9 +67,9 @@ export default function LandingPage() { ]} buttons={[ { - text: "Book Now", href: "#contact"}, + text: "Book Now", href: "/booking"}, { - text: "Get a Quote", href: "#contact"}, + text: "Get a Quote", href: "/booking"}, ]} avatars={[ { @@ -181,7 +181,7 @@ export default function LandingPage() { text="Ready for a Spotless Ride? Experience the Quick N’ Clean difference today. Book your mobile detail and enjoy a pristine vehicle without leaving your driveway." buttons={[ { - text: "Book Your Detail Now", href: "#contact"}, + text: "Book Your Detail Now", href: "/booking"}, ]} /> @@ -198,7 +198,7 @@ export default function LandingPage() { { label: "Full Detail Package", href: "#services"}, { - label: "Get a Quote", href: "#contact"}, + label: "Get a Quote", href: "/booking"}, ], }, { @@ -208,7 +208,9 @@ export default function LandingPage() { { label: "Testimonials", href: "#testimonials"}, { - label: "Contact Us", href: "#contact"}, + label: "Contact Us", href: "/booking"}, + { + label: "Book a Service", href: "/booking"} ], }, { @@ -226,4 +228,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file