// app/dna-sequencing/snp-genotyping/page.js import TitleBar from '../../components/shared/TitleBar'; import SNPIntroduction from './components/SNPIntroduction'; import SNPAdvantages from './components/SNPAdvantages'; import SNPApplications from './components/SNPApplications'; import SNPSpecifications from './components/SNPSpecifications'; import PageLayout from '../../components/Layout/PageLayout'; export default function SNPGenotypingPage() { const breadcrumbs = [ { label: "Home", href: "/" }, { label: "Research", href: "/dna-sequencing" }, { label: "SNP-based Genotyping", current: true } ]; return (
); }