29 lines
952 B
JavaScript
29 lines
952 B
JavaScript
import PageLayout from '../../components/Layout/PageLayout';
|
|
import DNATitleBar from '../../components/shared/DNATitleBar';
|
|
import EnrichmentIntroduction from './components/EnrichmentIntroduction';
|
|
import EnrichmentSpecifications from './components/EnrichmentSpecifications';
|
|
import EnrichmentPipeline from './components/EnrichmentPipeline';
|
|
|
|
export default function EnrichmentSequencingPage() {
|
|
const breadcrumbs = [
|
|
{ label: 'Home', href: '/' },
|
|
{ label: 'DNA Sequencing', href: '/dna-sequencing' },
|
|
{ label: 'Enrichment Sequencing', current: true }
|
|
];
|
|
|
|
return (
|
|
<PageLayout fixedHeader={true}>
|
|
<DNATitleBar
|
|
title="Enrichment Sequencing"
|
|
desc="Enriched Genome, Enriched Insights"
|
|
breadcrumbs={breadcrumbs}
|
|
/>
|
|
|
|
<div className="page-content">
|
|
<EnrichmentIntroduction />
|
|
<EnrichmentPipeline/>
|
|
<EnrichmentSpecifications />
|
|
</div>
|
|
</PageLayout>
|
|
);
|
|
} |