Files
sonr/pkg/proxy/routes/allocate.templ
T

19 lines
377 B
Templ
Raw Normal View History

2024-09-22 02:51:52 -04:00
package routes
2024-09-19 02:04:22 -04:00
import (
"github.com/labstack/echo/v4"
2024-09-21 21:42:51 -04:00
"github.com/onsonr/sonr/pkg/nebula/blocks"
2024-09-19 02:04:22 -04:00
)
func AllocateView(c echo.Context) error {
return echoComponentResponse(c, renderAuthorizeView())
}
templ renderAuthorizeView() {
@blocks.Card("authorize-view", blocks.SizeMedium) {
@blocks.H1("Sonr.ID")
@blocks.Text("Neo-tree is a file manager for NeoFS.")
}
}