export default function SolutionsOffer() { const solutions = [ { name: "Exome", desc: "Whole Exome Sequencing for uncovering the genetic basis of rare diseases." }, { name: "ExomeMito", desc: "Exome + Mitochondrial Genome Sequencing for a higher diagnostic yield." } ]; return (

Our Rare Disease Solutions Offer

Comprehensive genomic sequencing solutions designed to unlock genetic insights and accelerate diagnosis for rare disease patients and their families.

{solutions.map((sol, idx) => (

{sol.name}

{sol.desc}

))}
); }