package handler import ( "net/http" "vctp/components/core" "vctp/components/home" ) // Home handles the home page. func (h *Handler) Home(w http.ResponseWriter, r *http.Request) { h.html(r.Context(), w, http.StatusOK, core.HTML("Example Site", home.Home())) }