diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4bb2d36..fad0815 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,12 +2,49 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; -import { Activity, Heart, ShieldCheck, Sparkles, User } from "lucide-react"; + +const NAV_ITEMS = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, { name: "Services", id: "/services" }, + { name: "Team", id: "/team" }, + { name: "Testimonials", id: "/testimonials" }, + { name: "Contact", id: "/contact" }, + { 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: "/contact" }, + { 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 AboutPage() { return ( @@ -24,145 +61,48 @@ export default function AboutPage() { headingFontWeight="medium" > - + -
- -
+
+ +
-
- -
- - - - +
);