DNA image update

This commit is contained in:
mukesh13
2025-08-19 10:50:29 +05:30
parent a1526200ae
commit 04a9f5689b
75 changed files with 500 additions and 60 deletions

View File

@ -0,0 +1,23 @@
// app/rna-sequencing/whole-transcriptome-sequencing/page.js
import TitleBar from '../components/shared/TitleBar'
import AboutRNA from './components/AboutRNA';
import RNATable from './components/RNATable';
import PageLayout from '../components/Layout/PageLayout';
export default function RNAPage() {
const breadcrumbs = [
{ label: 'Home', href: '/', current: false },
{ label: 'RNA Sequencing', href: '#', current: true }
];
return (
<PageLayout fixedHeader={true}>
<TitleBar
title="RNA Sequencing"
breadcrumbs={breadcrumbs}
/>
<AboutRNA />
<RNATable />
</PageLayout>
);
}