Update src/app/departments/page.tsx

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

View File

@@ -3,7 +3,6 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function DepartmentsPage() {
@@ -25,22 +24,12 @@ export default function DepartmentsPage() {
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 style={{ paddingTop: "100px" }}>
<FeatureCardTwentyOne
title="Our Medical Departments"
description="Specialized care across all major disciplines."
accordionItems={[
{ id: "cardio", title: "Cardiology", content: "Advanced heart care and diagnostics." },
{ id: "ortho", title: "Orthopedics", content: "Comprehensive joint and bone health." },
{ id: "oncology", title: "Oncology", content: "Leading cancer treatment and support." }
]}
mediaPosition="right"
<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>
<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."
/>
</ReactLenis>
</ThemeProvider>
);