Update src/app/doctors/page.tsx

This commit is contained in:
2026-03-27 13:45:02 +00:00
parent 92d680ecaf
commit 439c0c8802

View File

@@ -2,134 +2,31 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function LandingPage() {
export default function DoctorsPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="small"
sizing="largeSmall"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<ThemeProvider>
<ReactLenis root>
<div id="nav" data-section="nav">
<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"
/>
</div>
<div id="team" data-section="team">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Our Specialist Team"
description="Highly qualified doctors ready to help."
groups={[
{
id: "g1",
groupTitle: "Medical Experts",
members: [
{
id: "d1",
title: "Dr. Kim",
subtitle: "Chief Surgeon",
detail: "10 years of experience",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWy8TlL0NTHbV3wqsXg9NCJIIh/portrait-of-sarah-johnson-1774619000650-e51d3520.png",
},
],
},
]}
/>
</div>
<div id="socialProof" data-section="socialProof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={false}
title="Recognized Excellence"
description="Our doctors are leaders in their fields."
names={[
"Medical Association",
"Hospital Excellence Award",
]}
/>
</div>
<div id="hospital-footer" data-section="hospital-footer">
<FooterBaseReveal
columns={[
{
title: "Quick Links",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Departments",
href: "/departments",
},
{
label: "Doctors",
href: "/doctors",
},
],
},
{
title: "Support",
items: [
{
label: "Book Appointment",
href: "/appointment",
},
{
label: "Contact Us",
href: "/contact",
},
],
},
]}
copyrightText="© 2024 Himchan Hospital. All rights reserved."
/>
</div>
<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" }] }]} />
</ReactLenis>
</ThemeProvider>
);
}
}