57 lines
1.7 KiB
JavaScript
57 lines
1.7 KiB
JavaScript
// app/dna-sequencing/microsatellites-ssr-str/page.js
|
|
import DNATitleBar from '../../components/shared/DNATitleBar';
|
|
import MicrosatellitesIntroduction from './components/MicrosatellitesIntroduction';
|
|
import MicrosatellitesAdvantages from './components/MicrosatellitesAdvantages';
|
|
import MicrosatellitesApplications from './components/MicrosatellitesApplications';
|
|
import MicrosatellitesSpecifications from './components/MicrosatellitesSpecifications';
|
|
import PageLayout from '../../components/Layout/PageLayout';
|
|
|
|
export const metadata = {
|
|
title: 'Microsatellites (SSR/STR) Based Genotyping - Operify Tech',
|
|
description: 'Empowering Research with Microsatellite Markers',
|
|
robots: 'noindex, follow',
|
|
};
|
|
|
|
export default function MicrosatellitesSSRSTRPage() {
|
|
const breadcrumbs = [
|
|
{
|
|
label: 'Home',
|
|
href: '/',
|
|
current: false
|
|
},
|
|
{
|
|
label: 'DNA Sequencing',
|
|
href: '/dna-sequencing',
|
|
current: false
|
|
},
|
|
{
|
|
label: 'Microsatellites (SSR/STR)',
|
|
href: null,
|
|
current: true
|
|
}
|
|
];
|
|
|
|
return (
|
|
<PageLayout fixedHeader={true}>
|
|
{/* Title Bar */}
|
|
<DNATitleBar
|
|
title="Microsatellites (SSR/STR)"
|
|
desc="Empowering Research with Microsatellite Markers"
|
|
breadcrumbs={breadcrumbs}
|
|
backgroundImage="/images/bredcrumb.jpg"
|
|
/>
|
|
|
|
{/* Page Content */}
|
|
<div className="page-content">
|
|
{/* Introduction Section */}
|
|
<MicrosatellitesIntroduction />
|
|
|
|
{/* Applications Section */}
|
|
<MicrosatellitesApplications />
|
|
|
|
{/* Specifications Section */}
|
|
<MicrosatellitesSpecifications />
|
|
</div>
|
|
</PageLayout>
|
|
);
|
|
} |