Files
operify/app/health/rare-disorders/page.js
mukesh13 547b18ac1e updated
2025-09-12 17:41:47 +05:30

31 lines
745 B
JavaScript

import RareTitle from './components/RareTitle';
import RareIntro from './components/RareIntro';
import ClinicalAreasGrid from './components/ClinicalAreasGrid';
import SolutionsOffer from './components/SolutionsOffer';
import WESInfo from './components/WESInfo';
import PageLayout from '../../components/Layout/PageLayout';
export default function RareDisorderPage() {
return (
<PageLayout fixedHeader={true}>
{/* Page Title */}
<RareTitle />
{/* Intro Paragraph */}
<RareIntro />
{/* Solutions Offered */}
<SolutionsOffer />
{/* WES Info */}
<WESInfo />
{/* Clinical Areas Grid */}
<div className="py-6">
<ClinicalAreasGrid />
</div>
</PageLayout>
);
}