From 78a56a061baa651caff1b00a83d1744a349ba4ba Mon Sep 17 00:00:00 2001
From: mukesh13 Services
-
Useful Link
-
- From wildlife conservation to livestock improvement, we offer comprehensive sequencing solutions that support a wide range of applications. These include whole-genome sequencing, exome sequencing, and targeted sequencing of disease-related genes. Our advanced technologies allow you to study genetic variations with unparalleled precision, offering valuable insights into both domesticated and wild animal populations. + From wildlife conservation to livestock improvement, we offer comprehensive sequencing solutions that support a wide range of applications. These include whole-genome sequencing, exome sequencing, and Custom sequencing of disease-related genes. Our advanced technologies allow you to study genetic variations with unparalleled precision, offering valuable insights into both domesticated and wild animal populations.
@@ -33,7 +33,7 @@ export default function AnimalResearch() {
+
+
+ Please provide SVG content or URL
+ Focused, Cost-Effective Genotyping with ddRAD +
++ 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. +
+
+ Advancing diagnostics and treatments for rare genetic conditions.
@@ -44,10 +44,10 @@ export default function ClinicalAreas() { {/* Oncology */} -Revolutionizing cancer care with targeted therapies and early detection.
diff --git a/app/health/Components/HealthIntro.jsx b/app/health/Components/HealthIntro.jsx index 4c8e909..ea43c45 100644 --- a/app/health/Components/HealthIntro.jsx +++ b/app/health/Components/HealthIntro.jsx @@ -1,42 +1,166 @@ // components/AboutHealth.js +'use client' +// components/AboutHealth.js import Image from "next/image"; import Link from "next/link"; +import { useState, useEffect } from "react"; export default function AboutHealth() { + const [currentSlide, setCurrentSlide] = useState(0); + + const slides = [ + { + content: "At Operify Health, we believe every patient deserves answers that are not only accurate — but actionable. By harnessing the power of Next Generation Sequencing (NGS), we transform patient samples into rich genomic insights that enable clinicians and oncologists to make informed, personalized decisions. From rare genetic disorders to complex oncological cases, our solutions help uncover what traditional diagnostics often miss." + }, + { + content: "At Operify Health, we believe every patient deserves answers that are not only accurate — but actionable. By harnessing the power of Next Generation Sequencing (NGS), we transform patient samples into rich genomic insights that enable clinicians and oncologists to make informed, personalized decisions. From rare genetic disorders to complex oncological cases, our solutions help uncover what traditional diagnostics often miss." + }, + { + content: "At Operify Health, we believe every patient deserves answers that are not only accurate — but actionable. By harnessing the power of Next Generation Sequencing (NGS), we transform patient samples into rich genomic insights that enable clinicians and oncologists to make informed, personalized decisions. From rare genetic disorders to complex oncological cases, our solutions help uncover what traditional diagnostics often miss." + } + ]; + + // 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 ( -Advancing diagnostics and treatments for rare genetic conditions.
@@ -44,10 +44,10 @@ export default function ClinicalAreas() { {/* Oncology */} -Revolutionizing cancer care with targeted therapies and early detection.
diff --git a/app/health/components/HealthIntro.jsx b/app/health/components/HealthIntro.jsx index 4c8e909..ea43c45 100644 --- a/app/health/components/HealthIntro.jsx +++ b/app/health/components/HealthIntro.jsx @@ -1,42 +1,166 @@ // components/AboutHealth.js +'use client' +// components/AboutHealth.js import Image from "next/image"; import Link from "next/link"; +import { useState, useEffect } from "react"; export default function AboutHealth() { + const [currentSlide, setCurrentSlide] = useState(0); + + const slides = [ + { + content: "At Operify Health, we believe every patient deserves answers that are not only accurate — but actionable. By harnessing the power of Next Generation Sequencing (NGS), we transform patient samples into rich genomic insights that enable clinicians and oncologists to make informed, personalized decisions. From rare genetic disorders to complex oncological cases, our solutions help uncover what traditional diagnostics often miss." + }, + { + content: "At Operify Health, we believe every patient deserves answers that are not only accurate — but actionable. By harnessing the power of Next Generation Sequencing (NGS), we transform patient samples into rich genomic insights that enable clinicians and oncologists to make informed, personalized decisions. From rare genetic disorders to complex oncological cases, our solutions help uncover what traditional diagnostics often miss." + }, + { + content: "At Operify Health, we believe every patient deserves answers that are not only accurate — but actionable. By harnessing the power of Next Generation Sequencing (NGS), we transform patient samples into rich genomic insights that enable clinicians and oncologists to make informed, personalized decisions. From rare genetic disorders to complex oncological cases, our solutions help uncover what traditional diagnostics often miss." + } + ]; + + // 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 ( -