Health page creation

This commit is contained in:
mukesh13
2025-08-12 11:50:37 +05:30
parent fcffef2883
commit 55b03ef145
62 changed files with 941 additions and 201 deletions

21
app/health/page.js Normal file
View File

@ -0,0 +1,21 @@
import HealthTitle from './components/HealthTitle';
import HealthIntro from './Components/HealthIntro';
import ClinicalAreas from './Components/ClinicalAreas';
import PageLayout from '../components/Layout/PageLayout';
export default function HealthPage() {
const breadcrumbs = [
{ label: 'Home', href: '/', current: false },
{ label: 'Health', href: '/health', current: false }
];
return (
<PageLayout fixedHeader={true}>
<HealthTitle/>
<HealthIntro />
<ClinicalAreas />
</PageLayout>
);
}