21 lines
685 B
TypeScript
21 lines
685 B
TypeScript
// ---------------------------------------------------------------------------
|
||
// 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>
|
||
);
|
||
}
|