diff --git a/src/app/status/page.tsx b/src/app/status/page.tsx index 5a88a062..c3375759 100644 --- a/src/app/status/page.tsx +++ b/src/app/status/page.tsx @@ -124,19 +124,27 @@ export default function StatusPage() {

Status

- {/* The verdict. If this dot is green you can stop reading. */} -

+ {/* The verdict. If this dot is green you can stop reading. + A raised PLATE (#383): it is the one thing on this page you act + on, so it sits ON the page while the readings below sit IN it. */} +

{SR[verdict.state]}: {verdict.text}{!online && ' · offline'}

+ {/* "Every well is a live reading" — each group of measurements is a + cut WELL. Rows stay flat inside them; the depth is the container's + job, not the row's. Same discipline as /docs (#380): no card, no + badge, no page-local shadow values. */} {groups.map((g) => (

{g}

- +
+
    + {checks.filter((c) => c.group === g).map((c) => )} +
+
))}