diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx
new file mode 100644
index 0000000..3be55e6
--- /dev/null
+++ b/src/app/booking/page.tsx
@@ -0,0 +1,65 @@
+"use client";
+
+import { useState } from "react";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
+import ContactSplit from '@/components/sections/contact/ContactSplit';
+import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+
+export default function BookingPage() {
+ return (
+
+
+
+
+
+ Book an Appointment
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2da3ea3..5112ae1 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -38,7 +38,7 @@ export default function LandingPage() {
{ name: "Book", id: "booking" },
]}
brandName="Varad Salon"
- button={{ text: "Book Appointment", onClick: () => document.getElementById('booking')?.scrollIntoView({ behavior: 'smooth' }) }}
+ button={{ text: "Book Appointment", href: "/appointment" }}
/>
@@ -48,7 +48,7 @@ export default function LandingPage() {
title="Where Every Look Becomes a Statement."
description="Sambhaji Nagar's most trusted salon for hair, skin, bridal, and wellness — with 5★ results and a team that truly cares."
buttons={[
- { text: "Book an Appointment", onClick: () => document.getElementById('booking')?.scrollIntoView({ behavior: 'smooth' }) },
+ { text: "Book an Appointment", href: "/appointment" },
{ text: "Explore Services", onClick: () => document.getElementById('services')?.scrollIntoView({ behavior: 'smooth' }) },
]}
mediaItems={[
@@ -167,14 +167,14 @@ export default function LandingPage() {
tag="Book Now"
title="Your Best Look is One Booking Away."
description="Walk in as you are. Walk out transformed."
- buttons={[{ text: "Book Your Appointment Now", onClick: () => alert('Booking system initialized') }]}
+ buttons={[{ text: "Book Your Appointment Now", href: "/appointment" }]}
/>