Files
operify/app/health/oncology/page.js
2025-09-04 02:33:03 +05:30

28 lines
685 B
JavaScript

import OncologyTitle from './components/OncologyTitle';
import OncologyIntro from './components/OncologyIntro';
import HereditaryCancerPanel from './components/HereditaryCancerPanel';
import SampleRequirements from '../rare-disorders/exome/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>
);
}