mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
18 lines
362 B
Templ
18 lines
362 B
Templ
package grant
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
|
|
"github.com/onsonr/sonr/pkg/nebula/global/styles"
|
|
"github.com/onsonr/sonr/pkg/nebula/global/ui"
|
|
)
|
|
|
|
templ View(c echo.Context) {
|
|
@styles.Layout("Sonr.ID", true) {
|
|
@ui.Card("authorize-view", styles.SizeMedium) {
|
|
@styles.H1("Sonr.ID")
|
|
@styles.Text("Neo-tree is a file manager for NeoFS.")
|
|
}
|
|
}
|
|
}
|