62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
// app/dna-sequencing/single-cell-dna-sequencing/page.js
|
|
import DNATitleBar from '../../components/shared/DNATitleBar';
|
|
import SingleCellIntroduction from './components/SingleCellIntroduction';
|
|
import SingleCellAdvantages from './components/SingleCellAdvantages';
|
|
import SingleCellApplications from './components/SingleCellApplications';
|
|
import SingleCellPipeline from './components/SingleCellPipeline';
|
|
import SingleCellSpecifications from './components/SingleCellSpecifications';
|
|
import PageLayout from '../../components/Layout/PageLayout';
|
|
|
|
export const metadata = {
|
|
title: 'Single Cell DNA Sequencing - Operify Tech',
|
|
description: 'Mapping Genetic Diversity Cell by Cell - Advanced single cell DNA analysis',
|
|
robots: 'noindex, follow',
|
|
};
|
|
|
|
export default function SingleCellDNASequencingPage() {
|
|
const breadcrumbs = [
|
|
{
|
|
label: 'Home',
|
|
href: '/',
|
|
current: false
|
|
},
|
|
{
|
|
label: 'Research',
|
|
href: '/dna-sequencing',
|
|
current: false
|
|
},
|
|
{
|
|
label: 'Single Cell DNA Sequencing',
|
|
href: null,
|
|
current: true
|
|
}
|
|
];
|
|
|
|
return (
|
|
<PageLayout fixedHeader={true}>
|
|
{/* Title Bar */}
|
|
<DNATitleBar
|
|
title="Single Cell DNA Sequencing"
|
|
desc="Mapping Genetic Diversity Cell by Cell"
|
|
breadcrumbs={breadcrumbs}
|
|
backgroundImage="/images/bredcrumb.jpg"
|
|
/>
|
|
|
|
{/* Page Content */}
|
|
<div className="page-content">
|
|
{/* Introduction Section */}
|
|
<SingleCellIntroduction />
|
|
|
|
{/* Advantages Section */}
|
|
<SingleCellAdvantages />
|
|
<SingleCellPipeline/>
|
|
|
|
{/* Applications Section */}
|
|
<SingleCellApplications />
|
|
|
|
{/* Specifications Section */}
|
|
<SingleCellSpecifications />
|
|
</div>
|
|
</PageLayout>
|
|
);
|
|
} |