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