From 2e610d204c6e2b7388151a9e072ad24787605d76 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 23 May 2026 18:23:09 +0000 Subject: [PATCH 1/3] Add src/app/appointment/page.tsx --- src/app/appointment/page.tsx | 66 ++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/app/appointment/page.tsx diff --git a/src/app/appointment/page.tsx b/src/app/appointment/page.tsx new file mode 100644 index 0000000..d704f26 --- /dev/null +++ b/src/app/appointment/page.tsx @@ -0,0 +1,66 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export default function AppointmentPage() { + return ( + + + + +
+
+ +
+
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 27ab87a1332a343e78f443d925a386faa3e1e036 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 23 May 2026 18:23:09 +0000 Subject: [PATCH 2/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 9944812..2541d56 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,7 +3,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactCTA from '@/components/sections/contact/ContactCTA'; -import ContactCTA_Text from '@/components/sections/contact/ContactCTA'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import FooterBase from '@/components/sections/footer/FooterBase'; @@ -28,6 +27,7 @@ export default function ContactPage() { { name: "Home", id: "/" }, { name: "About", id: "/#about" }, { name: "Services", id: "/#services" }, + { name: "Appointment", id: "/appointment" }, { name: "Contact", id: "/contact" }, ]} brandName="24 Hours Health" @@ -40,7 +40,7 @@ export default function ContactPage() { tag="Contact" title="Send Us a Message" description="Our team is ready to assist you with any medical queries or concerns." - buttons={[{ text: "Submit" }]} + buttons={[{ text: "Submit" }] background={{ variant: "radial-gradient" }} useInvertedBackground={false} /> @@ -50,12 +50,7 @@ export default function ContactPage() {