"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 (
Comprehensive genomic sequencing solutions designed to unlock genetic insights and accelerate diagnosis for rare disease patients and their families.
{sol.desc}