Health page creation
This commit is contained in:
21
app/health/page.js
Normal file
21
app/health/page.js
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user