Files
sonr/web/src/pages/allocate.templ
T

19 lines
376 B
Templ
Raw Normal View History

2024-09-19 02:04:22 -04:00
package pages
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.")
}
}