Health page creation

This commit is contained in:
mukesh13
2025-08-12 11:50:37 +05:30
parent fcffef2883
commit 55b03ef145
62 changed files with 941 additions and 201 deletions

View 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>
);
}