"use client"; export default function SolutionsOffer() { const solutions = [ { name: "Exome", desc: "Whole Exome Sequencing for uncovering the genetic basis of rare diseases.", path: "/health/rare-disorders/exome" }, { name: "ExomeMito", desc: "Exome + Mitochondrial Genome Sequencing for a higher diagnostic yield.", path: "/health/rare-disorders/exomemito" } ]; const handleCardClick = (path) => { // Using Next.js router for navigation window.location.href = path; // Alternative: If you want to use Next.js useRouter hook: // import { useRouter } from 'next/navigation'; // const router = useRouter(); // router.push(path); }; 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) => (
handleCardClick(sol.path)} className="rounded-xl p-4 hover:shadow-lg hover:scale-105 transition-all duration-300 cursor-pointer" style={{backgroundColor: '#f2fcfc'}} >

{sol.name}

{sol.desc}

Learn more
))}
); }