2024-10-01 14:42:11 -04:00
|
|
|
package grant
|
2024-09-22 02:51:52 -04:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/labstack/echo/v4"
|
2024-10-07 10:20:14 -04:00
|
|
|
|
|
|
|
|
"github.com/onsonr/sonr/pkg/nebula/global/styles"
|
|
|
|
|
"github.com/onsonr/sonr/pkg/nebula/global/ui"
|
2024-09-22 02:51:52 -04:00
|
|
|
)
|
|
|
|
|
|
2024-10-01 14:42:11 -04:00
|
|
|
templ View(c echo.Context) {
|
2024-10-07 10:20:14 -04:00
|
|
|
@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.")
|
2024-09-26 14:51:14 -04:00
|
|
|
}
|
2024-09-22 02:51:52 -04:00
|
|
|
}
|
|
|
|
|
}
|