create new html views

This commit is contained in:
2025-11-11 20:55:18 +07:00
parent a9da83e6ab
commit 697c5bc428
9 changed files with 195 additions and 162 deletions

View File

@@ -10,7 +10,6 @@ func SetupRoutes(app *app.Application) *chi.Mux {
r := chi.NewRouter()
r.Get("/", app.ProjectHandler.InitPage)
r.Get("/about", app.ProjectHandler.AboutPage)
r.Get("/projects", app.ProjectHandler.ProjectsPage)
return r
}
}