diff --git a/api/routes.go b/api/routes.go index b1d446f..6d62579 100644 --- a/api/routes.go +++ b/api/routes.go @@ -93,7 +93,7 @@ func NewRouter(db *lib.DB, cfg *lib.Config, store lib.ObjectStore, websiteFS fs. // Portal app routes (serve templates, auth checked client-side via JS) r.Get("/app", func(w http.ResponseWriter, r *http.Request) { - http.Redirect(w, r, "/app/tasks", http.StatusFound) + http.Redirect(w, r, "/app/projects", http.StatusFound) }) r.Get("/app/login", h.ServeLogin) r.Get("/app/tasks", h.ServeAppTasks) diff --git a/portal/templates/app/orgs.html b/portal/templates/app/orgs.html index 7c13125..6487af1 100644 --- a/portal/templates/app/orgs.html +++ b/portal/templates/app/orgs.html @@ -10,10 +10,46 @@ .sidebar-link:hover:not(.active) { background: rgba(255,255,255,0.04); } .card:hover { border-color: rgba(201,168,76,0.3); } + +