Files
operify/app/rna-sequencing/small-rna-sequencing/page.js
2025-06-16 15:53:12 +05:30

30 lines
1.0 KiB
JavaScript

// app/rna-sequencing/small-rna-sequencing/page.js
import TitleBar from '../../components/shared/TitleBar';
import SRNAIntroduction from './components/SRNAIntroduction';
import SRNAAdvantages from './components/SRNAAdvantages';
import SRNABioinformatics from './components/SRNABioinformatics';
import SRNAApplications from './components/SRNAApplications';
import SRNASpecifications from './components/SRNASpecifications';
import PageLayout from '../../components/Layout/PageLayout';
export default function SmallRNASequencingPage() {
const breadcrumbs = [
{ label: 'Home', href: '/', current: false },
{ label: 'RNA Sequencing', href: '/rna-sequencing', current: false },
{ label: 'Small RNA (sRNA) sequencing', href: '#', current: true }
];
return (
<PageLayout fixedHeader={true}>
<TitleBar
title="Small RNA (sRNA) sequencing"
breadcrumbs={breadcrumbs}
/>
<SRNAIntroduction />
<SRNAAdvantages />
<SRNABioinformatics />
<SRNAApplications />
<SRNASpecifications />
</PageLayout>
);
}