From 3b0fee42818b003cc01e4e13e333c1ac427e3dfd Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Tue, 24 Feb 2026 10:24:21 -0500 Subject: [PATCH] feat(frontend): add reusable admin sidebar component - Create AdminSidebar component for admin panel navigation - Support active state highlighting based on currentPath - Consistent navigation across all admin pages - Replaces duplicated sidebar markup in admin templates --- templates/admin_sidebar.templ | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 templates/admin_sidebar.templ diff --git a/templates/admin_sidebar.templ b/templates/admin_sidebar.templ new file mode 100644 index 0000000..9294dd8 --- /dev/null +++ b/templates/admin_sidebar.templ @@ -0,0 +1,29 @@ +package templates + +templ AdminSidebar(user User, currentPath string) { + +}