package templates func activeClass(current, target string) string { base := "block px-4 py-2 rounded-lg " if current == target { return base + "bg-accent text-bg-primary" } return base + "hover:opacity-80" }