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() {
@@ -46,8 +42,7 @@ export default function LandingPage() {
@@ -103,15 +96,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
- {
- title: "Online Booking", description: "Seamlessly schedule appointments with your preferred doctor.", bentoComponent: "reveal-icon", icon: Calendar,
- },
- {
- title: "Verified Profiles", description: "View certifications and background info for all specialists.", bentoComponent: "reveal-icon", icon: ShieldCheck,
- },
- {
- title: "Digital Records", description: "Secure access to your medical history and test results.", bentoComponent: "reveal-icon", icon: FileText,
- },
+ { title: "Online Booking", description: "Seamlessly schedule appointments with your preferred doctor.", bentoComponent: "reveal-icon", icon: Calendar },
+ { title: "Verified Profiles", description: "View certifications and background info for all specialists.", bentoComponent: "reveal-icon", icon: ShieldCheck },
+ { title: "Digital Records", description: "Secure access to your medical history and test results.", bentoComponent: "reveal-icon", icon: FileText },
]}
title="Comprehensive Care Features"
description="Everything you need to manage your health securely."
@@ -129,10 +116,10 @@ export default function LandingPage() {
{ id: "d2", name: "Dr. James Wilson", role: "Orthopedic Surgeon", imageSrc: "http://img.b2bpic.net/free-photo/front-view-doctor-holding-stethoscope_23-2148285702.jpg" },
{ id: "d3", name: "Dr. Elena Rodriguez", role: "General Physician", imageSrc: "http://img.b2bpic.net/free-photo/pharmacist-work_23-2150600109.jpg" },
{ id: "d4", name: "Dr. Kevin Chang", role: "Dermatologist", imageSrc: "http://img.b2bpic.net/free-photo/doctor-showing-results-tablet_329181-9276.jpg" },
- { id: "d5", name: "Dr. Alice Wong", role: "Pediatrician", imageSrc: "http://img.b2bpic.net/free-photo/young-confident-lady-doctor-medical-gown-looking_171337-5773.jpg" },
]}
title="Our Specialized Medical Team"
description="Meet our highly qualified specialists with certified medical expertise."
+ buttons={[{ text: "View All Doctors", href: "/doctors" }]}
/>
@@ -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" }] },
]}
/>