Files
operify/app/dna-sequencing/whole-genome-sequencing/page.js
2025-09-12 11:17:42 +05:30

30 lines
959 B
JavaScript

// app/dna-sequencing/whole-genome-sequencing/page.js (Updated)
import DNATitleBar from '../../components/shared/DNATitleBar';
import WGSIntroduction from './components/WGSIntroduction';
import WGSAdvantages from './components/WGSAdvantages';
import WGSSpecifications from './components/WGSSpecifications';
import PageLayout from '@/app/components/Layout/PageLayout';
export default function WholeGenomeSequencingPage() {
const breadcrumbs = [
{ label: 'Home', href: '/' },
{ label: 'DNA Sequencing', href: '/dna-sequencing' },
{ label: 'Whole Genome Sequencing', current: true }
];
return (
<PageLayout fixedHeader={true}>
<DNATitleBar
title="Whole Genome Sequencing"
desc="Whole Genome, Whole Insights"
breadcrumbs={breadcrumbs}
/>
<div className="page-content">
<WGSIntroduction />
<WGSAdvantages />
<WGSSpecifications />
</div>
</PageLayout>
);
}