Files
operify/app/dna-sequencing/whole-genome-sequencing/denovo/page.js
2025-06-16 15:53:12 +05:30

32 lines
1.1 KiB
JavaScript

import TitleBar from '../../../components/shared/TitleBar';
import DenovoIntroduction from './components/DenovoIntroduction';
import DenovoAdvantages from './components/DenovoAdvantages';
import DenovoApplications from './components/DenovoApplications';
import DenovoSpecifications from './components/DenovoSpecifications';
import PageLayout from '../../../components/Layout/PageLayout';
export default function WholeGenomeDenovoPage() {
const breadcrumbs = [
{ label: 'Home', href: '/' },
{ label: 'Research', href: '/research' },
{ label: 'Whole Genome Sequencing', href: '/dna-sequencing/whole-genome-sequencing' },
{ label: 'Whole Genome Denovo Sequencing', current: true }
];
return (
<PageLayout fixedHeader={true}>
<TitleBar
title="Whole Genome Denovo Sequencing"
desc="Unlocking Genomes, Discovering Diversity"
breadcrumbs={breadcrumbs}
/>
<div className="page-content">
<DenovoIntroduction />
<DenovoAdvantages />
<DenovoApplications />
<DenovoSpecifications />
</div>
</PageLayout>
);
}