// app/dna-sequencing/whole-genome-sequencing/page.js (Updated) import DNATitleBar from '../../components/shared/DNATitleBar'; import WGSIntroduction from './components/WGSIntroduction'; import WGSSpecifications from './components/WGSSpecifications'; import PageLayout from '@/app/components/Layout/PageLayout'; export default function WholeGenomeSequencingPage() { const breadcrumbs = [ { label: 'Home', href: '/' }, { label: 'DNA Sequencing', href: '/dna-sequencing' }, { label: 'Whole Genome Sequencing', current: true } ]; return (
); }