Files
operify/app/health/rare-disorders/components/RareIntro.jsx
2025-08-12 11:50:37 +05:30

18 lines
968 B
JavaScript

export default function RareIntro() {
return (
<section className="mx-auto px-10 pt-12">
<h1 className="text-4xl font-bold text-gray-700 text-left pb-2 mb-4">Rare Disorders</h1>
<h2 className="text-2xl font-semibold text-gray-700 mb-4">Transforming Delays into Diagnoses</h2>
<p className="text-gray-600 leading-relaxed text-base mb-4 text-justify">
There are over 7,000 identified rare diseases, many of which begin in childhoodand
nearly 80% have a genetic cause. Yet, the average time to diagnose a rare disorder is
still 4.8 years, with some cases taking up to 20 years.
</p>
<p className="text-gray-600 leading-relaxed text-base text-justify">
At Operify Health, we leverage advanced Next Generation Sequencing (NGS) and proprietary
bioinformatics to deliver rapid, reliable insightshelping reduce the diagnostic journey
from years to days.
</p>
</section>
);
}