Files
operify/app/health/page.js
2025-08-12 11:50:37 +05:30

21 lines
541 B
JavaScript

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>
);
}