21 lines
541 B
JavaScript
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>
|
|
);
|
|
} |