'use client' import Image from "next/image"; import Link from "next/link"; import { useState, useEffect } from "react"; export default function OncologyIntro() { const [currentSlide, setCurrentSlide] = useState(0); const slides = [ { content: "Cancer is not a single disease—it's a highly complex and dynamic group of disorders, often driven by a multitude of genomic alterations. Despite advancements in treatment, many patients still face uncertainty due to incomplete or delayed molecular diagnoses." }, { content: "At Operify Health, we recognize that behind every tumor is a unique genetic story waiting to be told. Our precision oncology solutions utilize high-throughput Next Generation Sequencing (NGS) to analyze both somatic and germline mutations—providing clinicians with actionable insights that inform targeted therapies, immunotherapy decisions, and hereditary cancer risk assessments." }, { content: "This genomic-driven approach is especially critical in advanced and treatment-resistant cancers, where conventional methods often fall short. Studies have shown that integrating broad-panel NGS into cancer care can impact clinical decision-making in up to 30% of cases, leading to more personalized and effective treatment strategies." }, { content: "By combining cutting-edge sequencing, advanced bioinformatics, and curated clinical evidence, Operify Health empowers oncologists to move from uncertainty to precision—ensuring every cancer patient's care is as individualized as their diagnosis." } ]; // Auto-advance slides every 5 seconds useEffect(() => { const timer = setInterval(() => { setCurrentSlide((prev) => (prev + 1) % slides.length); }, 5000); return () => clearInterval(timer); }, [slides.length]); const goToSlide = (index) => { setCurrentSlide(index); }; const nextSlide = () => { setCurrentSlide((prev) => (prev + 1) % slides.length); }; const prevSlide = () => { setCurrentSlide((prev) => (prev - 1 + slides.length) % slides.length); }; return (
{/* Left Side - Content */}
{/* Brand/Title */}

Turning Complexity into Clarity

{/* Content Slider */}
{slides[currentSlide].content}
{/* Navigation */}
{/* Progress Indicators */}
{slides.map((_, index) => (
{/* Right Side - Image */}
Cancer research and oncology molecular analysis
{/* Subtle border */}
); }