A per-event queue board for a repair cafe. Customers sign items in on a shared tablet; volunteers drag repairs through Queue, In progress and Done on a dashboard, then export the day's records as CSV. Zero npm dependencies: node:http plus JSON files on disk, no build step. Categories and house rules are set in config.json. Events are deleted 7 days after creation. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
17 lines
434 B
HTML
17 lines
434 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Not found — Repair Cafe Kanban</title>
|
|
<link rel="stylesheet" href="/static/app.css">
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<h1>Not found</h1>
|
|
<p>There is no repair cafe at this address. Check the link, or start a new one.</p>
|
|
<p><a href="/">Back to the start</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|