diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index fad0815..fa09ea2 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -8,10 +8,14 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
const NAV_ITEMS = [
{ name: "Home", id: "/" },
- { name: "About", id: "/about" }, { name: "Services", id: "/services" },
+ { name: "About", id: "/about" },
+ { name: "Services", id: "/services" },
{ name: "Team", id: "/team" },
- { name: "Testimonials", id: "/testimonials" },
- { name: "Contact", id: "/contact" },
+ { name: "Testimonials", id: "/#testimonials" },
+ { name: "FAQs", id: "/#faq" },
+ { name: "Blog", id: "/#blog" },
+ { name: "Instagram", id: "/#instagram-feed" },
+ { name: "Book Appointment", id: "/book-appointment" },
{ name: "Admin", id: "/admin" }
];
@@ -33,8 +37,8 @@ const FOOTER_COLUMNS = [
},
{
title: "Contact", items: [
- { label: "Book Appointment", href: "/contact" },
- { label: "Our Location", href: "/contact" },
+ { label: "Book Appointment", href: "/book-appointment" },
+ { label: "Our Location", href: "/#contact" },
{ label: "Call Us", href: "tel:+923214335773" },
],
},
@@ -66,7 +70,7 @@ export default function AboutPage() {
navItems={NAV_ITEMS}
brandName="Sarah's Clinic"
button={{
- text: "Book Appointment", href: "/contact"
+ text: "Book Appointment", href: "/book-appointment"
}}
animateOnLoad={true}
/>
diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx
index cd4edf4..c0fe982 100644
--- a/src/app/admin/page.tsx
+++ b/src/app/admin/page.tsx
@@ -6,6 +6,50 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
+const NAV_ITEMS = [
+ { name: "Home", id: "/" },
+ { name: "About", id: "/about" },
+ { name: "Services", id: "/services" },
+ { name: "Team", id: "/team" },
+ { name: "Testimonials", id: "/#testimonials" },
+ { name: "FAQs", id: "/#faq" },
+ { name: "Blog", id: "/#blog" },
+ { name: "Instagram", id: "/#instagram-feed" },
+ { name: "Book Appointment", id: "/book-appointment" },
+ { name: "Admin", id: "/admin" }
+];
+
+const FOOTER_COLUMNS = [
+ {
+ title: "About Us", items: [
+ { label: "Home", href: "/" },
+ { label: "About Sarah's Clinic", href: "/about" },
+ { label: "Our Team", href: "/team" },
+ { label: "Admin Panel", href: "/admin" },
+ ],
+ },
+ {
+ title: "Services", items: [
+ { label: "Pregnancy Care", href: "/services" },
+ { label: "Fertility Treatments", href: "/services" },
+ { label: "Gynecological Services", href: "/services" },
+ ],
+ },
+ {
+ title: "Contact", items: [
+ { label: "Book Appointment", href: "/book-appointment" },
+ { label: "Our Location", href: "/#contact" },
+ { label: "Call Us", href: "tel:+923214335773" },
+ ],
+ },
+ {
+ title: "Connect", items: [
+ { label: "Instagram", href: "https://www.instagram.com/dr_sarah_masood/" },
+ { label: "Facebook", href: "https://www.facebook.com/drsarahmasoodconsultantgynaecologist" },
+ ],
+ },
+];
+
export default function AdminPage() {
return (
);
-}
\ No newline at end of file
+}
diff --git a/src/app/book-appointment/page.tsx b/src/app/book-appointment/page.tsx
index 020a705..a6fda11 100644
--- a/src/app/book-appointment/page.tsx
+++ b/src/app/book-appointment/page.tsx
@@ -6,6 +6,50 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
+const NAV_ITEMS = [
+ { name: "Home", id: "/" },
+ { name: "About", id: "/about" },
+ { name: "Services", id: "/services" },
+ { name: "Team", id: "/team" },
+ { name: "Testimonials", id: "/#testimonials" },
+ { name: "FAQs", id: "/#faq" },
+ { name: "Blog", id: "/#blog" },
+ { name: "Instagram", id: "/#instagram-feed" },
+ { name: "Book Appointment", id: "/book-appointment" },
+ { name: "Admin", id: "/admin" }
+];
+
+const FOOTER_COLUMNS = [
+ {
+ title: "About Us", items: [
+ { label: "Home", href: "/" },
+ { label: "About Sarah's Clinic", href: "/about" },
+ { label: "Our Team", href: "/team" },
+ { label: "Admin Panel", href: "/admin" },
+ ],
+ },
+ {
+ title: "Services", items: [
+ { label: "Pregnancy Care", href: "/services" },
+ { label: "Fertility Treatments", href: "/services" },
+ { label: "Gynecological Services", href: "/services" },
+ ],
+ },
+ {
+ title: "Contact", items: [
+ { label: "Book Appointment", href: "/book-appointment" },
+ { label: "Our Location", href: "/#contact" },
+ { label: "Call Us", href: "tel:+923214335773" },
+ ],
+ },
+ {
+ title: "Connect", items: [
+ { label: "Instagram", href: "https://www.instagram.com/dr_sarah_masood/" },
+ { label: "Facebook", href: "https://www.facebook.com/drsarahmasoodconsultantgynaecologist" },
+ ],
+ },
+];
+
export default function AppointmentPage() {
// Placeholder for form submission logic
const handleAppointmentSubmit = (data: Record) => {
@@ -31,24 +75,7 @@ export default function AppointmentPage() {
);
-}
\ No newline at end of file
+}