diff --git a/src/app/doctors/page.tsx b/src/app/doctors/page.tsx new file mode 100644 index 0000000..4dd31c8 --- /dev/null +++ b/src/app/doctors/page.tsx @@ -0,0 +1,72 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; +import { Microscope, Stethoscope, HeartPulse, Activity } from "lucide-react"; + +export default function DoctorsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 9ca8866..e3f4bc3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,14 +31,10 @@ export default function LandingPage() { @@ -183,7 +170,7 @@ export default function LandingPage() { logoText="MedBook" columns={[ { title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] }, - { title: "Services", items: [{ label: "Booking", href: "#" }, { label: "Doctors", href: "#" }] }, + { title: "Services", items: [{ label: "Booking", href: "#" }, { label: "Doctors", href: "/doctors" }] }, ]} />