// app/dna-sequencing/single-cell-dna-sequencing/page.js import TitleBar from '../../components/shared/TitleBar'; import SingleCellIntroduction from './components/SingleCellIntroduction'; import SingleCellAdvantages from './components/SingleCellAdvantages'; import SingleCellApplications from './components/SingleCellApplications'; import SingleCellSpecifications from './components/SingleCellSpecifications'; import PageLayout from '../../components/Layout/PageLayout'; export const metadata = { title: 'Single Cell DNA Sequencing - Operify Tech', description: 'Mapping Genetic Diversity Cell by Cell - Advanced single cell DNA analysis', robots: 'noindex, follow', }; export default function SingleCellDNASequencingPage() { const breadcrumbs = [ { label: 'Home', href: '/', current: false }, { label: 'Research', href: '/dna-sequencing', current: false }, { label: 'Single Cell DNA Sequencing', href: null, current: true } ]; return ( {/* Title Bar */} {/* Page Content */}
{/* Introduction Section */} {/* Advantages Section */} {/* Applications Section */} {/* Specifications Section */}
); }