feat(web): rebuild home as "The Floor" on the Pressing Plant system

Home reads /api/requests + /api/wanted + /api/artists: summary tiles
(on the press / pressed / wanted / watching), the on-the-press job list
(state -> stripe + chip + stepped bar via describeJob; needs-attention shows
a literal recovery note), a request form (test hooks preserved), an empty
state, and a recently-pressed deadwax list. Verified in the real app (dark
desktop + mobile); light theme matches the approved comp.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jonathan
2026-07-12 14:09:42 +02:00
parent fcbe34b027
commit 7f1fe52a7c
2 changed files with 96 additions and 22 deletions
+1 -7
View File
@@ -1,11 +1,5 @@
import { Queue } from "./queue";
export default function Home() {
return (
<main>
<h1>Lyra</h1>
<p><a href="/artists">Artists</a> · <a href="/discover">Discover</a> · <a href="/wanted">Wanted</a> · <a href="/settings">Settings</a></p>
<Queue />
</main>
);
return <Queue />;
}