feat(sp6): /inbox route + sidebar nav link

This commit is contained in:
Tyler
2026-06-20 18:37:24 -06:00
parent bc34d991a9
commit ab841653d4
3 changed files with 39 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
// ---------------------------------------------------------------------------
// Inbox page (sub-project 6).
//
// Full-bleed dark working surface for the four-lane triage workflow.
// Real implementation lands in T14-T17; this placeholder exists so the
// /inbox route resolves during T13.
// ---------------------------------------------------------------------------
export default function Inbox() {
return (
<div
className="min-h-screen p-8"
style={{ background: "var(--tt-bg)", color: "var(--tt-ink)" }}
>
<p className="font-mono text-sm" style={{ color: "var(--tt-ink-dim)" }}>
Inbox coming up in T14T17
</p>
</div>
);
}