package templates import "gitgud/internal/domain" templ Forbidden(user *domain.User) { @Layout("Forbidden · gitgud", user) { @errorState("403", "Access denied", "You don't have permission to do that.") } } templ ServerError(user *domain.User) { @Layout("Error · gitgud", user) { @errorState("500", "Something went wrong", "An unexpected error occurred. Please try again.") } } templ errorState(code, title, body string) {
{ code }

{ title }

{ body }

← Back home
}