import React from 'react'; import Image from 'next/image'; import Link from 'next/link'; const ResearchCard = ({ image, title, description, link }) => (
{/* Image Section */}
{title}
{/* Content Section */}

{title}

{description}

); const ResearchSection = () => { const researchAreas = [ { image: "/images/blog/plant_fni.jpg", title: "Plant Research", description: "Enable researchers to generate accurate reference genomes for plants, study genetic variations, and identify genes related to traits like yield, disease resistance, and stress tolerance.", link: "/research#plant-research" }, { image: "/images/blog/animan_fni.jpg", title: "Animal Research", description: "Enable researchers to study the genetic diversity of animal populations, trace ancestry, identify disease-resistant genes, and analyze gene expression patterns.", link: "/research#animal-research" }, { image: "/images/blog/microbial_fn.jpg", title: "Microbial Research", description: "Enable pathogen identification, outbreak tracking, and studying antimicrobial resistance by sequencing the genomes of bacteria, viruses, and other microbes.", link: "/research#microbial-research" }, { image: "/images/blog/human_fn.jpg", title: "Human Research", description: "Enable rapid sequencing of genomes or exomes to identify genomic alterations associated with rare and complex disorders.", link: "/research#human-research" } ]; return (

Research Area

{/* Grid layout - 1 column on mobile, 2 columns on desktop */}
{researchAreas.map((area, index) => ( ))}
); }; export default ResearchSection;