summaryrefslogtreecommitdiff
path: root/web/index.html
diff options
context:
space:
mode:
authorClaudomator Agent <agent@claudomator.local>2026-07-06 04:49:35 +0000
committerClaudomator Agent <agent@claudomator.local>2026-07-06 04:49:35 +0000
commita03203ec4ef4048ff94e3ddb02ff7f124a762030 (patch)
tree265228fc5bf39798ab723fd418c93fb8630c971a /web/index.html
parent694390df915f4fcbefd00d509bce4d33bed43868 (diff)
feat(web): add Tasks tab nav entry point and CSS column layout
- Add <button data-tab="tasks"> to the nav bar (between Stories and Stats) - Add <div data-panel="tasks" hidden><div class="tasks-board"></div></div> to main as the panel container for the Tasks board - Add .tasks-board, .tasks-column, .tasks-column-header, .tasks-column-count, .tasks-column-list CSS rules (mirrors .stories-* layout; 300px columns to accommodate task card content) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'web/index.html')
-rw-r--r--web/index.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html
index 0704cb8..d003c6a 100644
--- a/web/index.html
+++ b/web/index.html
@@ -41,6 +41,7 @@
</header>
<nav class="tab-bar">
<button class="tab active" data-tab="stories" title="Tracker">πŸ“‹</button>
+ <button class="tab" data-tab="tasks" title="Tasks">πŸ“</button>
<button class="tab" data-tab="stats" title="Model Dashboard">πŸ“Š</button>
<button class="tab" data-tab="drops" title="Drops">πŸ“</button>
<button class="tab" data-tab="settings" title="Settings">βš™οΈ</button>
@@ -57,6 +58,9 @@
<div class="task-empty">Loading…</div>
</div>
</div>
+ <div data-panel="tasks" hidden>
+ <div class="tasks-board"></div>
+ </div>
<div data-panel="drops" hidden>
<div class="drops-panel"></div>
</div>