Files
operify/app/dna-sequencing/enrichment-sequencing/whole-exome/components/ExomeSpecifications.jsx
2025-06-16 15:53:12 +05:30

63 lines
2.0 KiB
JavaScript

// app/dna-sequencing/enrichment-sequencing/whole-exome/components/ExomeSpecifications.jsx
import Link from 'next/link';
import SpecificationsLayout from '../../../../components/shared/SpecificationsLayout';
const ExomeSpecifications = () => {
const specificationItems = [
{
icon: "/images/homepage-2/NGS-Icons-45.svg",
title: "Sample Requirement",
renderContent: () => (
<div>
<div className="mb-3">
<strong> Genomic DNA</strong>
</div>
<div className="mb-3">
<strong> Cultivated cells, Blood, tissues, Fresh Frozen, FFPE</strong>
<span className="block text-sm text-gray-500 mt-1">
(formalin-fixed paraffin-embedded)
</span>
</div>
<div className="mt-4 text-sm">
<strong>
Please refer to{" "}
<Link href="/sample-submission-guideline" className="text-teal-600 underline hover:text-teal-700">
sample submission guidelines
</Link>
{" "}or{" "}
<Link href="/contact-us" className="text-teal-600 underline hover:text-teal-700">
Contact Us!
</Link>
</strong>
</div>
</div>
)
},
{
icon: "/images/homepage-1/service/Advantages-NGS-Icons-20.svg",
title: "Sequencing Platform",
content: "Illumina NovaSeq 6000/ NovaSeq X"
},
{
icon: "/images/service/social-support.png",
title: "Deliverables",
renderContent: () => (
<ul className="list-disc pl-5 space-y-2 text-gray-600 text-start">
<li>The original sequencing data</li>
<li>Experimental results</li>
<li>Bioinformatics and Data Analysis Report</li>
<li>Details in Whole Exome Sequencing (customizable)</li>
</ul>
)
}
];
return (
<SpecificationsLayout
title="Service Specifications"
specificationItems={specificationItems}
/>
);
};
export default ExomeSpecifications;