// app/dna-sequencing/hybrid-genome-sequencing/components/HybridSpecifications.jsx import Link from 'next/link'; import SpecificationsLayout from '../../../components/shared/SpecificationsLayout'; const HybridSpecifications = () => { const specificationItems = [ { icon: "/images/homepage-2/NGS-Icons-45.svg", title: "Sample Requirement", renderContent: () => (

Blood, Tissue, and other samples

Please refer to{" "} sample submission guidelines {" "}or{" "} Contact Us!
) }, { icon: "/images/homepage-1/service/Advantages-NGS-Icons-20.svg", title: "Sequencing Platform", content: "Illumina NovaSeq 6000/ NovaSeq X and PacBio/Oxford Nanopore" }, { icon: "/images/service/social-support.png", title: "Deliverables", renderContent: () => ( ) } ]; return ( ); }; export default HybridSpecifications;