UI/UX enhancements

This commit is contained in:
2026-02-20 17:46:34 -05:00
parent f21d2039cb
commit 2171991dc8
9 changed files with 1028 additions and 736 deletions

View File

@@ -92,6 +92,7 @@ func main() {
mux.HandleFunc("/", h.HandleRoot)
mux.HandleFunc("/launch", h.HandleLaunch)
mux.HandleFunc("/auth-redirect", h.HandleAuthRedirect)
mux.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("app/static"))))
// Session-required routes — wrapped with the hard-gate middleware.
mux.Handle("/dashboard", sessionMW.RequireSession(http.HandlerFunc(h.HandleDashboard)))