Docker config
This commit is contained in:
35
app/dna-sequencing/snp-genotyping/page.js
Normal file
35
app/dna-sequencing/snp-genotyping/page.js
Normal file
@ -0,0 +1,35 @@
|
||||
// app/dna-sequencing/snp-genotyping/page.js
|
||||
import TitleBar from '../../components/shared/TitleBar';
|
||||
import SNPIntroduction from './components/SNPIntroduction';
|
||||
import SNPAdvantages from './components/SNPAdvantages';
|
||||
import SNPApplications from './components/SNPApplications';
|
||||
import SNPSpecifications from './components/SNPSpecifications';
|
||||
import PageLayout from '../../components/Layout/PageLayout';
|
||||
|
||||
export default function SNPGenotypingPage() {
|
||||
const breadcrumbs = [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Research", href: "/dna-sequencing" },
|
||||
{ label: "SNP-based Genotyping", current: true }
|
||||
];
|
||||
|
||||
return (
|
||||
<PageLayout fixedHeader={true}>
|
||||
<div className="page-wrapper">
|
||||
<TitleBar
|
||||
title="SNP-based Genotyping"
|
||||
desc="From Genomes to Traits: Precision through SNPs"
|
||||
breadcrumbs={breadcrumbs}
|
||||
backgroundImage="/images/bredcrumb.jpg"
|
||||
/>
|
||||
|
||||
<div className="page-content">
|
||||
<SNPIntroduction />
|
||||
<SNPAdvantages />
|
||||
<SNPApplications />
|
||||
<SNPSpecifications />
|
||||
</div>
|
||||
</div>
|
||||
</PageLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user