29 lines
953 B
JavaScript
29 lines
953 B
JavaScript
import DNATitleBar from '../../components/shared/DNATitleBar';
|
|
import EpigenomicsIntroduction from './components/EpigenomicsIntroduction';
|
|
import EpigenomicsSpecifications from './components/EpigenomicsSpecifications';
|
|
import EpigenomicsPipeline from './components/EpigenomicsPipeline';
|
|
import PageLayout from '../../components/Layout/PageLayout';
|
|
|
|
export default function EpigenomicsSequencingPage() {
|
|
const breadcrumbs = [
|
|
{ label: 'Home', href: '/' },
|
|
{ label: 'DNA Sequencing', href: '/dna-sequencing' },
|
|
{ label: 'Epigenomics Sequencing', current: true }
|
|
];
|
|
|
|
return (
|
|
<PageLayout fixedHeader={true}>
|
|
<DNATitleBar
|
|
title="Epigenomics Sequencing"
|
|
desc="Explore Cellular Memory"
|
|
breadcrumbs={breadcrumbs}
|
|
/>
|
|
|
|
<div className="page-content">
|
|
<EpigenomicsIntroduction />
|
|
<EpigenomicsPipeline/>
|
|
<EpigenomicsSpecifications />
|
|
</div>
|
|
</PageLayout>
|
|
);
|
|
} |