DNA image update
This commit is contained in:
23
app/dna-sequencing/page.js
Normal file
23
app/dna-sequencing/page.js
Normal file
@ -0,0 +1,23 @@
|
||||
// app/rna-sequencing/whole-transcriptome-sequencing/page.js
|
||||
import TitleBar from '../components/shared/TitleBar'
|
||||
import AboutDNA from './components/AboutDNA';
|
||||
import DNATable from './components/DNATable';
|
||||
import PageLayout from '../components/Layout/PageLayout';
|
||||
|
||||
export default function DNAPage() {
|
||||
const breadcrumbs = [
|
||||
{ label: 'Home', href: '/', current: false },
|
||||
{ label: 'DNA Sequencing', href: '#', current: true }
|
||||
];
|
||||
|
||||
return (
|
||||
<PageLayout fixedHeader={true}>
|
||||
<TitleBar
|
||||
title="DNA Sequencing"
|
||||
breadcrumbs={breadcrumbs}
|
||||
/>
|
||||
<AboutDNA />
|
||||
<DNATable />
|
||||
</PageLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user