17 lines
405 B
JavaScript
17 lines
405 B
JavaScript
import HealthIntro from './components/HealthIntro';
|
|
import HealthTitle from './components/HealthTitle';
|
|
import ClinicalAreas from './components/ClinicalAreas';
|
|
|
|
import PageLayout from '../components/Layout/PageLayout';
|
|
|
|
export default function HealthPage() {
|
|
|
|
return (
|
|
<PageLayout fixedHeader={true}>
|
|
<HealthTitle/>
|
|
<HealthIntro />
|
|
<ClinicalAreas />
|
|
|
|
</PageLayout>
|
|
);
|
|
} |