Files
operify/app/dna-sequencing/enrichment-sequencing/whole-exome/page.js
2025-08-21 13:08:42 +05:30

34 lines
1.2 KiB
JavaScript

// app/dna-sequencing/enrichment-sequencing/whole-exome/page.js
import DNATitleBar from '../../../components/shared/DNATitleBar';
import ExomeIntroduction from './components/ExomeIntroduction';
import ExomeApplications from './components/ExomeApplications';
import ExomeSpecifications from './components/ExomeSpecifications';
import PageLayout from '../../../components/Layout/PageLayout';
export default function WholeExomeSequencingPage() {
const breadcrumbs = [
{ label: "Home", href: "/" },
{ label: "Research", href: "/dna-sequencing" },
{ label: "Enrichment Sequencing", href: "/dna-sequencing/enrichment-sequencing" },
{ label: "Whole Exome Sequencing", current: true }
];
return (
<PageLayout fixedHeader={true}>
<div className="page-wrapper">
<DNATitleBar
title="Whole Exome Sequencing"
desc="Focused Insights, Comprehensive Impact"
breadcrumbs={breadcrumbs}
backgroundImage="/images/bredcrumb.jpg"
/>
<div className="page-content">
<ExomeIntroduction />
<ExomeApplications />
<ExomeSpecifications />
</div>
</div>
</PageLayout>
);
}