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>
18 lines
469 B
HTML
18 lines
469 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Repair Cafe Kanban</title>
|
|
<link rel="stylesheet" href="/static/app.css">
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<h1>Repair Cafe Kanban</h1>
|
|
<p class="subtitle">A queue board for a repair cafe event.</p>
|
|
|
|
<p><button class="primary big" onclick="location.href='/new'">Create repair cafe kanban</button></p>
|
|
</div>
|
|
</body>
|
|
</html>
|