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() } } } templ ReturningView() { @layout.View("Login | Sonr.ID") { @layout.Container() { @hero.TitleDesc("Welcome Back!", "Continue with your existing Sonr.ID.")
Log back in
} } }