// EpigenomicsIntroduction.jsx import IntroductionLayout from '../../../components/shared/IntroductionLayout'; const EpigenomicsIntroduction = () => { const contentItems = [ "Epigenomics Sequencing is a comprehensive approach to analyze epigenetic modifications across genomes, providing enriched genomic view of cellular memory and gene regulation.", "The workflow includes isolating DNA, fragmenting it, capturing the regions of interest followed by sequencing to produce millions of short reads.", "In the bioinformatics analysis, these reads are aligned to a known reference genome to detect genomic alterations and epigenetic modifications.", "It is a powerful tool for diverse genomic studies, capable of sequencing humans, livestock, plants, bacteria, and disease-related microbes." ]; return (
{/* Main container with two columns */}
{/* Left Column - Content using existing IntroductionLayout structure */}
{/* Introduction Section */}

Introduction and Workflow

    {contentItems.map((item, index) => (
  • {item}
  • ))}
{/* Right Column - Custom Content with Image and SVG */}
{/* Top Section - Flowchart with larger fixed width */}
Epigenomics Process Flow
{/* Bottom Section - Image with same width */} {/*
Epigenomics Overview
*/}
); }; export default EpigenomicsIntroduction;