const { useState, useEffect } = React; function useNarrow(bp) { bp = bp || 760; const [narrow, setNarrow] = useState(typeof window !== "undefined" && window.innerWidth < bp); useEffect(function() { function h() { setNarrow(window.innerWidth < bp); } window.addEventListener("resize", h); return function() { window.removeEventListener("resize", h); }; }, []); return narrow; } /* ============================================================ Section 1 — The chaos / problem ============================================================ */ function ChaosSection() { const scattered = [ { tag: "WhatsApp", text: "Mom's blood test forwarded to bua" }, { tag: "Drive", text: "Scans_2023_Apollo.pdf" }, { tag: "Photos", text: "IMG_2391 — prescription" }, { tag: "Email", text: "Discharge summary — Fortis" }, { tag: "Notebook", text: "Telmisartan, after breakfast" }, { tag: "Memory", text: "the homeopath's name?" }, ]; return (
The reality every family knows

Your family's health is scattered across twelve different places.

And the one place it really needs to be — in front of you when something is wrong — is the one place it never is.

{scattered.map((s, i) => (
{s.tag} {s.text}
))}
When an emergency happens, families shouldn't waste time searching for files.
Arogya keeps every record one tap away — for everyone in the family.
Reports Prescriptions Vaccinations Medicines
); } /* ============================================================ Section 2 — What Arogya remembers (feature grid) ============================================================ */ function RemembersSection() { const items = [ { t: "Reports", d: "Lab results, scans, discharge summaries — auto-categorised by person and date.", k: "▤" }, { t: "Prescriptions", d: "Every drug, every dose, every doctor. Searchable across years.", k: "℞" }, { t: "Medicines", d: "What's being taken now, what was stopped, and why.", k: "◔" }, { t: "Vaccinations", d: "Childhood schedule, boosters, travel shots — never miss one again.", k: "✦" }, { t: "Doctor visits", d: "Who said what, on which date, and what to follow up on.", k: "✎" }, { t: "Menstrual cycles", d: "Tracked privately, with the context the rest of healthcare needs.", k: "○" }, { t: "Ayurveda & more", d: "Allopathy, Ayurveda, homeopathy, naturopathy — all in one memory.", k: "❋" }, { t: "Health history", d: "Conditions, allergies, surgeries, family history — finally in one place.", k: "⌥" }, ]; return (
What Arogya remembers

Everything your family's body has been through — finally in one timeline.

Forward a report on Telegram. Snap a prescription. Forget about it. Arogya files it for the right person, in the right place, with the right context.

{items.map((it, i) => (
{it.k}
{it.t}
{it.d}
))}
); } /* ============================================================ Section 3 — Quiet AI ============================================================ */ function QuietAISection() { return (
Quietly intelligent

AI that quietly organizes your family's health. Not an AI doctor.

Arogya doesn't diagnose. It doesn't replace your doctor. It does the work no one wants to do — reading every PDF, naming every file, linking every prescription to the right person, surfacing what matters before a visit.

{[ "Reads handwritten prescriptions, lab PDFs, discharge summaries.", "Links a new report to the right family member, automatically.", "Surfaces what's relevant before a doctor's visit — without you asking.", "Reminds you about boosters, refills, and follow-ups, gently." ].map((l, i) => (
{l}
))}
); } function AIDemo() { return (
Today · prepared for Amma's visit
Updated 6 min ago
AROGYA NOTICED →
LDL up 12% since February. Probably worth mentioning to Dr. Mehta tomorrow.
I've added a comparison chart and last visit's notes to her file. Open it before the appointment?
); } /* ============================================================ Section 4 — Family (collective health) ============================================================ */ function FamilySection() { const narrow = useNarrow(760); const roles = [ { who: "Daughters & sons", d: "managing parents' appointments, medicines, and reports from afar." }, { who: "Spouses", d: "coordinating refills, side-effects, and tomorrow's tests." }, { who: "Caregivers", d: "given controlled access to only what they need." }, { who: "In an emergency", d: "the right history is one tap away — for anyone you trust." }, ]; return (
Multi-generational Indian family at home
Healthcare is a family activity

Because no one manages their health alone.

In Indian families, healthcare is collective. Arogya is built for that — with shared access, role-based controls, and a single timeline that follows your family across years and doctors.

{roles.map(function(r, i) { return (
{r.who}
{r.d}
); })}
); } /* ============================================================ Section 5 — Invisible health history + Indian medicine ============================================================ */ function InvisibleSection() { const forgotten = [ "self-medication", "supplements & vitamins", "menstrual cycles", "home remedies", "Ayurvedic medicine", "homeopathy", "naturopathy", "recurring symptoms", "yoga & lifestyle", "doctor's verbal advice", ]; return (
The invisible 80%

Real healthcare is everything between doctor visits.

Most apps only remember what gets a printed report. Arogya remembers everything else — because families don't follow just one system of medicine.

{forgotten.map((f, i) => ( {f} ))}
{[ { k: "Allopathy", d: "Doctors, hospitals, labs" }, { k: "Ayurveda", d: "Vaidyas, kashayams, panchakarma" }, { k: "Homeopathy", d: "Constitutional + acute" }, { k: "Naturopathy", d: "Diet, fasting, lifestyle" }, { k: "Yoga", d: "Practice, breath, posture" }, ].map((c, i) => (
{c.k}
{c.d}
))}
); } /* ============================================================ Section 6 — Privacy / Google Drive ============================================================ */ function PrivacySection() { const narrow = useNarrow(760); return (
Yours. Forever.

Your files stay in your Google Drive. Not ours.

Most health apps trap your data in their vault. Arogya doesn't. Every document you upload is saved to your own Drive — neatly organized into folders you can browse without us.

{[ { t: "You own it", d: "Files live in your Drive, in folders you control." }, { t: "You control access", d: "Add or revoke family access at any time." }, { t: "Nothing trapped", d: "Cancel Arogya tomorrow — your archive stays intact." }, { t: "Encrypted in transit", d: "And never sold, shared, or trained on." }, ].map((c, i) => (
{c.t}
{c.d}
))}
{narrow ? : }
); } function DriveCompact() { return (
My Arogya Family Health
{[{n:"Amma",s:"42 files"},{n:"Appa",s:"29 files"},{n:"Arjun",s:"17 files"},{n:"Riya",s:"23 files"}].map(function(f) { return (
📂 {f.n}{f.s}
); })}
); } function DriveMock() { const folders = [ { n: "Amma", s: "42 files · 18 MB" }, { n: "Appa", s: "29 files · 11 MB" }, { n: "Arjun", s: "17 files · 6 MB" }, { n: "Riya", s: "23 files · 8 MB" }, ]; return (
My Drive · Arogya · Family Health
Shared with 3
{folders.map((f, i) => (
{f.n}
{f.s}
updated today
))}
); } /* ============================================================ Section 7 — Multi-channel future ============================================================ */ function ChannelsSection() { const channels = [ { k: "Web", d: "Sign in and manage your family's complete health timeline.", active: true }, { k: "Telegram", d: "Forward reports, snap prescriptions, ask questions.", active: true }, { k: "WhatsApp", d: "Same intelligence, where more families already are.", active: false }, { k: "Mobile app", d: "iOS & Android — native experience, same memory.", active: false }, ]; return (
Wherever your family already is

The interface can change. Your health memory remains.

Arogya works on the web today, and on Telegram for forwarding reports on the go. WhatsApp and a native mobile app are on the roadmap.

{channels.map((c, i) => (
{c.active ? "Available now" : "On the roadmap"}
{c.k}
{c.d}
))}
); } /* ============================================================ Section 8 — Final CTA ============================================================ */ function FinalCTA() { return (
Begin

Your family's health memory should stay with your family forever.

Start on web or Telegram. Two minutes to set up. A lifetime of continuity.

); } /* ============================================================ Footer ============================================================ */ function Footer() { return ( ); } window.AroSections = { ChaosSection, RemembersSection, QuietAISection, FamilySection, InvisibleSection, PrivacySection, ChannelsSection, FinalCTA, Footer };