import React from 'react'; const SNPWorkflow = ({ workflowImage = "/images/flowchart/snp_flow.svg" }) => { const introItems = [ "SNP-based genotyping identifies single nucleotide polymorphisms (SNPs) across the genome, offering insights into genetic diversity, disease associations, and trait inheritance. It is widely applied in population genetics, evolutionary biology, and plant and animal breeding." ]; return (
{/* Main container with two columns */}
{/* Left Column - Content */}
{/* Introduction Section */}

Introduction and Workflow

    {introItems.map((item, index) => (
  • {item}
  • ))}
{/* Right Column - Workflow Image */}
SNP Genotyping Workflow
); }; export default SNPWorkflow;