Update src/app/doctors/page.tsx

This commit is contained in:
2026-03-27 13:45:36 +00:00
parent 7386db4500
commit b2e037bd3a

View File

@@ -3,29 +3,19 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function DoctorsPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Departments", id: "/departments" }, { name: "Doctors", id: "/doctors" }, { name: "Book Appointment", id: "/appointment" }, { name: "Contact", id: "/contact" }]}
brandName="Himchan Hospital"
/>
<TeamCardFive
animationType="slide-up"
title="Our Expert Doctors"
description="Meet our team of highly qualified medical professionals committed to your wellbeing."
textboxLayout="default"
useInvertedBackground={false}
team={[
{ id: "1", name: "Dr. Alice Smith", role: "Cardiologist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWy8TlL0NTHbV3wqsXg9NCJIIh/portrait-of-sarah-johnson-1774619000650-e51d3520.png" },
{ id: "2", name: "Dr. Bob Johnson", role: "Neurologist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWy8TlL0NTHbV3wqsXg9NCJIIh/portrait-of-michael-chen-1774619004322-3eeeed49.png" }
]}
/>
<FooterBaseReveal columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Doctors", href: "/doctors" }] }]} />
<div id="hospital-footer" data-section="hospital-footer">
<FooterBaseReveal columns={[{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "Doctors", href: "/doctors" }] }]} />
</div>
</ReactLenis>
</ThemeProvider>
);