Files
operify/app/rna-sequencing/single-cell-rna-sequencing/page.js
2025-08-21 13:08:42 +05:30

27 lines
975 B
JavaScript

import TitleBar from '../../components/shared/TitleBar';
import SingleCellIntroduction from './components/SingleCellIntroduction';
import SingleCellApplications from './components/SingleCellApplications';
import SingleCellPipeline from './components/SingleCellPipeline';
import SingleCellSpecifications from './components/SingleCellSpecifications';
import PageLayout from '../../components/Layout/PageLayout';
export default function SingleCellRNASequencingPage() {
const breadcrumbs = [
{ label: 'Home', href: '/', current: false },
{ label: 'RNA Sequencing', href: '/rna-sequencing', current: false },
{ label: 'Single Cell RNA Sequencing', href: '#', current: true }
];
return (
<PageLayout>
<TitleBar
title="Single Cell RNA Sequencing"
breadcrumbs={breadcrumbs}
/>
<SingleCellIntroduction />
<SingleCellPipeline/>
<SingleCellApplications />
<SingleCellSpecifications />
</PageLayout>
);
}