commit 060c5c32131701bf5360505f3a9562c2cf41c740
Author: Ben Sima <ben@bensima.com>
Date: Thu Nov 27 16:40:09 2025
Remove homepage action links section (redundant with navbar)
The build and tests pass with no errors. The homepage action links
secti
Task-Id: t-154.4
diff --git a/Omni/Jr/Web.hs b/Omni/Jr/Web.hs
index d9746a13..f556e1b2 100644
--- a/Omni/Jr/Web.hs
+++ b/Omni/Jr/Web.hs
@@ -274,13 +274,6 @@ instance Lucid.ToHtml HomePage where
Lucid.div_ [Lucid.class_ "container"] <| do
Lucid.h1_ "Jr Dashboard"
- Lucid.div_ [Lucid.class_ "actions"] <| do
- Lucid.a_ [Lucid.href_ "/tasks", Lucid.class_ "action-btn"] "View All Tasks"
- Lucid.a_ [Lucid.href_ "/ready", Lucid.class_ "action-btn action-btn-primary"] "View Ready Queue"
- Lucid.a_ [Lucid.href_ "/blocked", Lucid.class_ "action-btn"] "View Blocked"
- Lucid.a_ [Lucid.href_ "/intervention", Lucid.class_ "action-btn"] "Needs Intervention"
- Lucid.a_ [Lucid.href_ "/stats", Lucid.class_ "action-btn"] "View Statistics"
-
Lucid.h2_ "Task Status"
Lucid.div_ [Lucid.class_ "stats-grid"] <| do
statCard "Open" (TaskCore.openTasks stats) "badge-open" "/tasks?status=Open"