mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 18:01:39 +00:00
17 lines
335 B
Templ
17 lines
335 B
Templ
package views
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/onsonr/sonr/internal/nebula/hero"
|
||
|
|
"github.com/onsonr/sonr/internal/nebula/layout"
|
||
|
|
)
|
||
|
|
|
||
|
|
templ InitialView() {
|
||
|
|
@layout.View("Sonr.ID") {
|
||
|
|
@layout.Container() {
|
||
|
|
@hero.TitleDesc("Sonr.ID", "The decentralized identity layer for the web.")
|
||
|
|
@hero.StartButton()
|
||
|
|
@hero.SocialButtonsRow()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|