Files
operify/app/health/rare-disorders/components/WESInfo.jsx
2025-08-21 10:21:32 +05:30

28 lines
1.2 KiB
JavaScript

export default function WESInfo() {
const points = [
"Whole Exome Sequencing (WES) is recommended for individuals with unexplained genetic disorders, complex or atypical clinical presentations, or when prior genetic tests have been inconclusive.",
"It is especially valuable in diagnosing rare inherited diseases, uncovering the cause of developmental delays, intellectual disabilities, or early-onset neurological conditions, and providing insights for personalized treatment planning.",
"WES can help identify genetic causes in a wide range of rare disorders."
];
return (
<section className="mx-auto px-8 pt-4">
<h2 className="text-3xl font-bold text-teal-700 pb-2 mb-4">
Who Should Consider Whole Exome Sequencing (WES)?
</h2>
<ul className="space-y-4">
{points.map((point, idx) => (
<li key={idx} className="flex items-start">
<span
className="w-2 h-2 rounded-full mt-2 mr-3 flex-shrink-0"
style={{backgroundColor: '#faae31'}}
></span>
<p className="text-gray-600 leading-relaxed text-base text-justify">
{point}
</p>
</li>
))}
</ul>
</section>
);
}