2024-10-10 13:44:17 -04:00
|
|
|
package routes
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
|
|
2024-10-15 14:31:19 -04:00
|
|
|
"github.com/onsonr/sonr/pkg/nebula/components/authentication"
|
|
|
|
|
"github.com/onsonr/sonr/pkg/nebula/components/marketing"
|
2024-10-10 13:44:17 -04:00
|
|
|
)
|
|
|
|
|
|
2024-10-15 14:31:19 -04:00
|
|
|
func RegisterGatewayAPI(e *echo.Echo) {
|
2024-10-10 13:44:17 -04:00
|
|
|
}
|
|
|
|
|
|
2024-10-15 14:31:19 -04:00
|
|
|
func RegisterGatewayViews(e *echo.Echo) {
|
|
|
|
|
e.GET("/", marketing.HomeRoute)
|
|
|
|
|
e.GET("/login", authentication.LoginModalRoute)
|
|
|
|
|
e.GET("/register", authentication.RegisterModalRoute)
|
2024-10-10 13:44:17 -04:00
|
|
|
}
|