feat(sp6): /inbox route + sidebar nav link
This commit is contained in:
@@ -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 T14–T17
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user