// app/dna-sequencing/genome-mapping/page.js import TitleBar from '../../components/shared/TitleBar'; import GenomeMappingIntroduction from './components/GenomeMappingIntroduction'; import GenomeMappingAdvantages from './components/GenomeMappingAdvantages'; import GenomeMappingSpecifications from './components/GenomeMappingSpecifications'; import PageLayout from '../../components/Layout/PageLayout'; export const metadata = { title: 'Genome Mapping - Operify Tech', description: 'Unlocking Genomic Secrets, One Map at a Time', robots: 'noindex, follow', }; export default function GenomeMappingPage() { const breadcrumbs = [ { label: 'Home', href: '/', current: false }, { label: 'Research', href: '/dna-sequencing', current: false }, { label: 'Genome Mapping', href: null, current: true } ]; return ( {/* Title Bar */} {/* Page Content */}
{/* Introduction Section */} {/* Advantages Section */} {/* Specifications Section */}
); }