Health page creation
This commit is contained in:
27
app/health/oncology/page.js
Normal file
27
app/health/oncology/page.js
Normal file
@ -0,0 +1,27 @@
|
||||
import OncologyTitle from './components/OncologyTitle';
|
||||
import OncologyIntro from './components/OncologyIntro';
|
||||
import HereditaryCancerPanel from './components/HereditaryCancerPanel';
|
||||
import SampleRequirements from '../rare-disorders/components/SampleRequirements';
|
||||
|
||||
import PageLayout from '../../components/Layout/PageLayout';
|
||||
|
||||
export default function OncologyPage() {
|
||||
|
||||
return (
|
||||
<PageLayout fixedHeader={true}>
|
||||
{/* Page Title */}
|
||||
<OncologyTitle />
|
||||
|
||||
{/* Intro */}
|
||||
<OncologyIntro />
|
||||
|
||||
{/* Hereditary Cancer Panel */}
|
||||
<HereditaryCancerPanel />
|
||||
|
||||
|
||||
|
||||
{/* Sample Requirements */}
|
||||
<SampleRequirements/>
|
||||
</PageLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user