package templates templ Header(user User, currentPath string) {
@Icon("search", "h-4 w-4")
} // SidebarUserMenu is the bottom-of-sidebar account control for signed-in users. templ SidebarUserMenu(user User) {
@Icon("user", "h-4 w-4") Profile if user.Role == "admin" { @Icon("settings", "h-4 w-4") Admin Panel }
} // SidebarSignIn is an inline sign-in for signed-out visitors, preserving the // original header's inline login (htmx POST) so users can auth from any page. templ SidebarSignIn(currentPath string) {
Create an account
}