import React from "react"; import Image from "next/image"; import Link from "next/link"; const AdvantageCard = ({ icon, title, description }) => (
{title}

{title}

{description}

); const NGSSection = () => { const advantages = [ { icon: "/images/homepage-1/service/Advantages-NGS-Icons-20.svg", title: "High Throughput", description: "NGS technology has the capacity to generate an abundance of sequence data within a relatively short timespan." }, { icon: "/images/homepage-1/service/Advantages-NGS-Icons-21.svg", title: "High Resolution", description: "Advanced sequencing platforms provide highly accurate DNA/RNA data, detecting even minor variations. This precision drives breakthroughs in health, diagnostics, agriculture, and molecular biology." }, { icon: "/images/homepage-1/service/Advantages-NGS-Icons-22.svg", title: "Cost Efficient", description: "Affordability of the technology facilitates researchers in the successful implementation of large-scale sequencing projects." }, { icon: "/images/homepage-1/service/Advantages-NGS-Icons-23.svg", title: "Flexible", description: "Supports a wide range of sample types and library construction methods, making it suitable for various research objectives and experimental designs." }, { icon: "/images/homepage-1/service/Advantages-NGS-Icons-24.svg", title: "Time Effective", description: "Rapid sequencing of large genetic material be completed within a comparatively short duration, thereby yielding quick results." }, { icon: "/images/homepage-1/service/BioinformaticsAnalysis.svg", title: "Bioinformatics Analysis", description: "NGS produces vast amounts of data, supporting complex research through advanced bioinformatic analysis." } ]; return (
{/* NGS Introduction */}

NGS and Its Advantages

Next Generation Sequencing (NGS) is a transformative technology that has revolutionized scientific research. Unlike traditional methods that required years to decode a single genome, NGS can sequence entire genomes within days. This groundbreaking technology employs massively parallel sequencing, simultaneously analyzing millions of small DNA fragments, allowing researchers to investigate thousands of genomic regions at single-base resolution in a single experiment, empowering them to tackle ambitious questions and achieve comprehensive insights.

{/* Advantages Grid */}
{advantages.map((advantage, index) => ( ))}
); }; export default NGSSection;