mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 10:21:40 +00:00
13 lines
298 B
Go
13 lines
298 B
Go
package landing
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/labstack/echo/v4"
|
||
|
|
"github.com/onsonr/sonr/pkg/common/response"
|
||
|
|
"github.com/onsonr/sonr/pkg/webui/landing/pages"
|
||
|
|
)
|
||
|
|
|
||
|
|
func RegisterRoutes(e *echo.Echo) {
|
||
|
|
e.GET("/", response.Templ(pages.HomePage()))
|
||
|
|
e.GET("/register", response.Templ(pages.RegisterPage()))
|
||
|
|
}
|