Files
operify/app/dna-sequencing/whole-genome-sequencing/denovo/page.js
2025-08-06 15:03:48 +05:30

34 lines
1.2 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 WGSDeNovoPipeline from './components/WGSDeNovoPipeline';
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 />
<WGSDeNovoPipeline/>
<DenovoApplications />
<DenovoSpecifications />
</div>
</PageLayout>
);
}