/* global React */ /* ============================================================ Medium Use Cases — 2 rows per screen Each row is one use case, full-width, ~50vh tall: [ photo | headline+copy | artifact ] (3 columns on desktop) Stacks to single column on mobile. ============================================================ */ function MediumUseCases() { const A = window.AroScenes._artifacts; const rows = [ { id: "cycles", n: "01", eyebrow: "For her", head: "Her cycle, on her terms.", sub: "Track periods and symptoms privately — linked to the rest of her health.", photo: { id: "med-cycles", placeholder: "Indian woman in her 20s/30s, soft natural light at home" }, Artifact: A.CycleMini }, { id: "meds", n: "02", eyebrow: "For Amma & Appa", head: "Every pill. Every dose.", sub: "Forward a prescription. Snap a strip. Arogya files it for the right person.", photo: { id: "med-meds", placeholder: "Hands of an Indian senior holding daily medicines / pill organizer" }, Artifact: A.MedsMini }, { id: "vaccines", n: "03", eyebrow: "For the kids", head: "Never miss a booster again.", sub: "Schedule, boosters, travel shots — tracked and gently reminded.", photo: { id: "med-vaccines", placeholder: "Indian toddler at pediatric clinic, parent comforting during a shot" }, Artifact: A.VaccineMini }, { id: "visit", n: "04", eyebrow: "Memory you search", head: "What did the cardiologist say?", sub: "Every visit captured — who, when, advised what, follow up by when.", photo: { id: "med-visit", placeholder: "Indian cardiologist with stethoscope, ECG strip / patient consult" }, Artifact: A.VisitMini }, { id: "labs", n: "05", eyebrow: "Trends, not paper", head: "Five years of bloodwork. One chart.", sub: "Arogya reads every PDF and plots the line that matters.", photo: { id: "med-labs", placeholder: "Indian father (60s) at home reading lab report / blood sample background" }, Artifact: A.LabMini }, { id: "traditional", n: "06", eyebrow: "One memory", head: "Vaidya, homeopath, GP — together.", sub: "Families don't follow one system of medicine. Arogya remembers all.", photo: { id: "med-trad", placeholder: "Ayurvedic vaidya in white kurta examining nadi, herbs in foreground" }, Artifact: A.TradMini }, { id: "symptoms", n: "07", eyebrow: "The invisible 80%", head: "That recurring cough since winter.", sub: "Symptoms, home remedies, supplements — between-visit life, finally captured.", photo: { id: "med-symptoms", placeholder: "Indian woman at home with a mug of kadha / tulsi tea by a window" }, Artifact: A.SymptomsMini }, { id: "emergency", n: "08", eyebrow: "When seconds matter",head: "Everything an ER needs. One tap.", sub: "Blood group, allergies, current meds, last hospital — share with anyone you trust.", photo: { id: "med-emergency", placeholder: "Adult child holding parent's hand in hospital corridor / family caregiver moment" }, Artifact: A.EmergencyMini }, ]; return (
What Arogya remembers — in real life

Eight things every family is already tracking. Just not in one place.

A person, the problem, and the artifact Arogya actually shows you.

{rows.map(r => )}
); } function MediumRow({ n, eyebrow, head, sub, photo, Artifact }) { return (
{ e.currentTarget.style.transform = "translateY(-2px)"; e.currentTarget.style.boxShadow = "var(--shadow-md)"; e.currentTarget.style.borderColor = "color-mix(in oklab, var(--c-brand) 28%, var(--c-line))"; }} onMouseLeave={e => { e.currentTarget.style.transform = ""; e.currentTarget.style.boxShadow = ""; e.currentTarget.style.borderColor = ""; }} className="medium-row" > {/* Photo — drop a real photo here */}
{photo.placeholder
{/* Copy */}
{n} {eyebrow}

{head}

{sub}

{/* Artifact */}
); } window.AroMedium = { MediumUseCases };