Files
operify/app/dna-sequencing/whole-genome-sequencing/page.js
2025-08-21 12:40:06 +05:30

28 lines
877 B
JavaScript

// app/dna-sequencing/whole-genome-sequencing/page.js (Updated)
import DNATitleBar from '../../components/shared/DNATitleBar';
import WGSIntroduction from './components/WGSIntroduction';
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 />
<WGSSpecifications />
</div>
</PageLayout>
);
}