revisi templ landing page

This commit is contained in:
Sas Andy
2024-04-29 14:38:20 +07:00
parent d8e8f91fbd
commit b3883c9a8d
7 changed files with 390 additions and 169 deletions

View File

@@ -24,7 +24,7 @@ func main() {
// We redirect the root route to the "/user" route
app.GET("/", func(c echo.Context) error {
return c.Redirect(http.StatusMovedPermanently, "/user")
return c.Redirect(http.StatusMovedPermanently, "/landing_page/")
})
uStore, err := db.NewUserStore(dbName)