diff --git a/app/health/components/ClinicalAreas.jsx b/app/health/components/ClinicalAreas.jsx new file mode 100644 index 0000000..0b9ee19 --- /dev/null +++ b/app/health/components/ClinicalAreas.jsx @@ -0,0 +1,71 @@ +// components/ClinicalAreas.js +import Link from "next/link"; +import Image from "next/image"; + +export default function ClinicalAreas() { + return ( +
+ {/* Heading */} +

+ Precise Solutions for Clinical Areas +

+ + {/* Subtext */} +

+ Empowering you with precise, tailored approaches to diagnostics and care — + addressing the unique needs of each clinical area to improve patient outcomes. +

+ + {/* Cards */} +
+ {/* Rare Disorders */} + +
+
+ {/* Icon */} +
+ Rare Disorders +
+
+

Rare Disorders

+

+ Advancing diagnostics and treatments for rare genetic conditions. +

+
+
+
+ + + {/* Oncology */} + +
+
+ {/* Icon */} +
+ Oncology +
+
+

Oncology

+

+ Revolutionizing cancer care with targeted therapies and early detection. +

+
+
+
+ +
+
+ ); +} \ No newline at end of file diff --git a/app/health/components/HealthIntro.jsx b/app/health/components/HealthIntro.jsx new file mode 100644 index 0000000..b014870 --- /dev/null +++ b/app/health/components/HealthIntro.jsx @@ -0,0 +1,49 @@ +// components/AboutHealth.js +import Image from "next/image"; +import Link from "next/link"; + +export default function AboutHealth() { + return ( +
+ {/* Title */} +

About Health

+ + {/* Intro Section */} +
+ {/* Left 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. +

+

+ Our strength lies in our multidisciplinary team of researchers, bioinformaticians, + and data scientists who use custom-built algorithms and cutting-edge analytics to + interpret genetic data with unmatched depth. Backed by curated scientific evidence + and real-world clinical findings, we deliver recommendations that are current, + relevant, and patient-focused. +

+

+ With every genome we decode, we move closer to truly personalized medicine — + bridging data and care, science and life. +

+
+ + {/* Right Image */} +
+ DNA Strand +
+
+
+ ); +} \ No newline at end of file diff --git a/app/health/components/HealthTitle.jsx b/app/health/components/HealthTitle.jsx new file mode 100644 index 0000000..74cc12e --- /dev/null +++ b/app/health/components/HealthTitle.jsx @@ -0,0 +1,41 @@ +import React from 'react'; + +const HealthTitle = () => { + return ( +
+ {/* Breadcrumb */} +
+
+ +
+
+ + {/* Page Title */} +
+

+ About Health +

+
+
+
+ ); +}; + +export default HealthTitle; \ No newline at end of file diff --git a/app/health/oncology/components/CancerKeyFeatures.jsx b/app/health/oncology/components/CancerKeyFeatures.jsx new file mode 100644 index 0000000..d1b93e9 --- /dev/null +++ b/app/health/oncology/components/CancerKeyFeatures.jsx @@ -0,0 +1,25 @@ +export default function CancerKeyFeatures() { + const features = [ + { title: "Comprehensive Gene Coverage", desc: "Includes high- and moderate-risk genes such as BRCA1, BRCA2, TP53, MLH1, MSH2, APC, and others." }, + { title: "Germline Variant Detection", desc: "Accurately detects SNVs, Indels, and selected CNVs in genes associated with inherited cancer risk." }, + { title: "Family-Centered Testing", desc: "Supports cascade testing for at-risk relatives, enabling early detection and prevention." }, + { title: "Clinical Actionability", desc: "Provides insights that guide surveillance, preventive measures, and personalized treatment planning." }, + { title: "High Sensitivity & Specificity", desc: "Uses ≥100X sequencing depth with ≥90% Q30 base quality for reliable variant calling." }, + { title: "Expert Interpretation & Reporting", desc: "Variants classified using ACMG guidelines, backed by curated literature and clinical databases." }, + { title: "Genetic Counseling Support", desc: "Optional access to pre- and post-test counseling for patient education and informed decision-making." } + ]; + + return ( +
+

Key Features

+
+ {features.map((f, idx) => ( +
+

{f.title}

+

{f.desc}

+
+ ))} +
+
+ ); +} diff --git a/app/health/oncology/components/HereditaryCancerPanel.jsx b/app/health/oncology/components/HereditaryCancerPanel.jsx new file mode 100644 index 0000000..1f0f1cd --- /dev/null +++ b/app/health/oncology/components/HereditaryCancerPanel.jsx @@ -0,0 +1,58 @@ +export default function HereditaryCancerPanel() { + const features = [ + { title: "Comprehensive Gene Coverage", desc: "Includes high- and moderate-risk genes such as BRCA1, BRCA2, TP53, MLH1, MSH2, APC, and others." }, + { title: "Germline Variant Detection", desc: "Accurately detects SNVs, Indels, and selected CNVs in genes associated with inherited cancer risk." }, + { title: "Family-Centered Testing", desc: "Supports cascade testing for at-risk relatives, enabling early detection and prevention." }, + { title: "Clinical Actionability", desc: "Provides insights that guide surveillance, preventive measures, and personalized treatment planning." }, + { title: "High Sensitivity & Specificity", desc: "Uses ≥100X sequencing depth with ≥90% Q30 base quality for reliable variant calling." }, + { title: "Expert Interpretation & Reporting", desc: "Variants classified using ACMG guidelines, backed by curated literature and clinical databases." }, + { title: "Genetic Counseling Support", desc: "Optional access to pre- and post-test counseling for patient education and informed decision-making." } + ]; + + return ( +
+

Operify Hereditary Cancer Panel

+ +
+

+ About 5-10% of all cancers are linked to inherited genetic mutations, often going + undetected until late stages or after multiple family members are affected. +

+

+ The Operify Hereditary Cancer Panel screens key high- and moderate-risk genes associated + with hereditary cancer syndromes like HBOC, Lynch Syndrome (LS), Li Fraumeni Syndrome (LFS), + Familial Adenomatous Polyposis (FAP), Cowden Syndrome (CS), Peutz-Jeghers Syndrome (PJS), + Neurofibromatosis (NF) etc. +

+

+ Early identification of germline mutations enables proactive clinical decisions, including + risk-reducing strategies, targeted surveillance, and family cascade testing. +

+

+ Studies show that genetic testing in hereditary cancer cases improves outcomes and informs + care for both patients and at-risk relatives. +

+
+ +

Key Features

+
+ + + + + + + + + {features.map((feature, idx) => ( + + + + + ))} + +
FeatureDescription
{feature.title}{feature.desc}
+
+
+ ); +} \ No newline at end of file diff --git a/app/health/oncology/components/OncologyIntro.jsx b/app/health/oncology/components/OncologyIntro.jsx new file mode 100644 index 0000000..448bda3 --- /dev/null +++ b/app/health/oncology/components/OncologyIntro.jsx @@ -0,0 +1,31 @@ +export default function OncologyIntro() { + return ( +
+

Oncology

+

Turning Complexity into Clarity

+

+ 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. +

+

+ 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. +

+

+ 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. +

+

+ 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. +

+
+ ); +} \ No newline at end of file diff --git a/app/health/oncology/components/OncologyTitle.jsx b/app/health/oncology/components/OncologyTitle.jsx new file mode 100644 index 0000000..e1c629c --- /dev/null +++ b/app/health/oncology/components/OncologyTitle.jsx @@ -0,0 +1,41 @@ +import React from 'react'; + +const OncologyTitle = () => { + return ( +
+ {/* Breadcrumb */} +
+
+ +
+
+ + {/* Page Title */} +
+

+ Oncology +

+
+
+
+ ); +}; + +export default OncologyTitle; \ No newline at end of file diff --git a/app/health/oncology/components/SampleRequirements.jsx b/app/health/oncology/components/SampleRequirements.jsx new file mode 100644 index 0000000..7bbdf95 --- /dev/null +++ b/app/health/oncology/components/SampleRequirements.jsx @@ -0,0 +1,12 @@ +export default function SampleRequirements({ title, items }) { + return ( +
+

Sample Requirements – {title}

+ +
+ ); +}