Files
cyclone/src/pages/Inbox.tsx
T
2026-06-20 18:37:24 -06:00

21 lines
685 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// ---------------------------------------------------------------------------
// 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>
);
}