mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 09:51:39 +00:00
15 lines
299 B
Templ
15 lines
299 B
Templ
package views
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/onsonr/sonr/internal/nebula/hero"
|
||
|
|
"github.com/onsonr/sonr/internal/nebula/layout"
|
||
|
|
)
|
||
|
|
|
||
|
|
templ LoadingView() {
|
||
|
|
@layout.View("Loading... | Sonr.ID") {
|
||
|
|
@layout.Container() {
|
||
|
|
@hero.TitleDesc("Loading Vault", "This will be used to login to your vault.")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|