/* global React */ const { useState } = React; /* ============================================================ Compact Use Cases — dense moment cards - Photo reduced to a thin banner (~120px) on each card - Headline + 1-line copy + miniature artifact below - 4-col grid on wide, 2-col tablet, 1-col mobile - Reuses artifact components from arogya-scenes.jsx ============================================================ */ function CompactUseCases() { const A = window.AroScenes._artifacts; const cards = [ { id: "cycles", eyebrow: "For her", head: "Her cycle, on her terms.", photo: { id: "compact-cycles", placeholder: "Drop — young woman, soft light" }, Artifact: A.CycleMini }, { id: "meds", eyebrow: "For Amma & Appa", head: "Every pill. Every dose.", photo: { id: "compact-meds", placeholder: "Drop — medicines on a wooden table" }, Artifact: A.MedsMini }, { id: "vaccines", eyebrow: "For the kids", head: "Never miss a booster.", photo: { id: "compact-vaccines", placeholder: "Drop — child at clinic, warm light" }, Artifact: A.VaccineMini }, { id: "visit", eyebrow: "Memory you search", head: "What did the cardiologist say?", photo: { id: "compact-visit", placeholder: "Drop — doctor with stethoscope" }, Artifact: A.VisitMini }, { id: "labs", eyebrow: "Trends, not paper", head: "5 years of bloodwork in one chart.", photo: { id: "compact-labs", placeholder: "Drop — elderly father reading" }, Artifact: A.LabMini }, { id: "traditional", eyebrow: "One memory", head: "Vaidya, homeopath, GP — together.", photo: { id: "compact-trad", placeholder: "Drop — Ayurvedic herbs, mortar" }, Artifact: A.TradMini }, { id: "symptoms", eyebrow: "The invisible 80%", head: "That recurring cough since winter.", photo: { id: "compact-symptoms", placeholder: "Drop — woman pouring tea" }, Artifact: A.SymptomsMini }, { id: "emergency", eyebrow: "When seconds count", head: "Everything an ER needs. One tap.", photo: { id: "compact-emergency", placeholder: "Drop — family hands together" }, Artifact: A.EmergencyMini }, ]; return (
What Arogya remembers — in real life

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

Each moment, the artifact Arogya actually shows you when you need it.

{cards.map(c => ( ))}
); } function MomentCard({ eyebrow, head, photo, Artifact }) { return (
{ e.currentTarget.style.transform = "translateY(-3px)"; e.currentTarget.style.boxShadow = "var(--shadow-md)"; e.currentTarget.style.borderColor = "color-mix(in oklab, var(--c-brand) 30%, var(--c-line))"; }} onMouseLeave={e => { e.currentTarget.style.transform = ""; e.currentTarget.style.boxShadow = ""; e.currentTarget.style.borderColor = ""; }}> {/* photo banner — small */}
{eyebrow}

{head}

); } window.AroCompact = { CompactUseCases };