Docker config

This commit is contained in:
mukesh13
2025-06-16 15:53:12 +05:30
commit da3df17022
411 changed files with 24117 additions and 0 deletions

View File

@ -0,0 +1,27 @@
import TitleBar from '../../components/shared/TitleBar';
import SingleCellIntroduction from './components/SingleCellIntroduction';
import SingleCellAdvantages from './components/SingleCellAdvantages';
import SingleCellApplications from './components/SingleCellApplications';
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 />
<SingleCellAdvantages />
<SingleCellApplications />
<SingleCellSpecifications />
</PageLayout>
);
}