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

31 lines
1.0 KiB
JavaScript

import PageLayout from '../../components/Layout/PageLayout';
import TitleBar from '../../components/shared/TitleBar';
import EnrichmentIntroduction from './components/EnrichmentIntroduction';
import EnrichmentAdvantages from './components/EnrichmentAdvantages';
import EnrichmentSpecifications from './components/EnrichmentSpecifications';
import EnrichmentPipeline from './components/EnrichmentPipeline';
export default function EnrichmentSequencingPage() {
const breadcrumbs = [
{ label: 'Home', href: '/' },
{ label: 'Research', href: '/research' },
{ label: 'Enrichment Sequencing', current: true }
];
return (
<PageLayout fixedHeader={true}>
<TitleBar
title="Enrichment Sequencing"
desc="Enriched Genome, Enriched Insights"
breadcrumbs={breadcrumbs}
/>
<div className="page-content">
<EnrichmentIntroduction />
<EnrichmentAdvantages />
<EnrichmentPipeline/>
<EnrichmentSpecifications />
</div>
</PageLayout>
);
}