ikurotime / gitgud

public
main / internal/interface/web/templates/not_found.templ
260 B · Templ Raw
1package templates
2
3import "gitgud/internal/domain"
4
5templ NotFound(user *domain.User) {
6	@Layout("Not found · gitgud", user) {
7		@errorState("404", "This page doesn't exist", "The page you're looking for can't be found, or you don't have access to it.")
8	}
9}