feat: display color-coded word cards on index page

This commit is contained in:
Grail Finder (aider)
2025-05-01 18:16:56 +03:00
parent 024dbcffc2
commit 7ebd0db05a
2 changed files with 18 additions and 3 deletions

View File

@ -19,5 +19,5 @@ func HandlePing(w http.ResponseWriter, r *http.Request) {
func HandleHome(w http.ResponseWriter, r *http.Request) {
tmpl := template.Must(template.ParseFiles("../components/index.html"))
tmpl.Execute(w, nil)
tmpl.Execute(w, roundWords)
}