package pages import ( "github.com/labstack/echo/v4" "github.com/onsonr/sonr/pkg/nebula/blocks" ) templ Home(c echo.Context) { @blocks.Card("home-view", blocks.SizeLarge) { @blocks.H1("Sonr.ID") @blocks.Text("A Decentralized Web Node Client for the Sonr Network.") @blocks.Spacer()
@blocks.Button(blocks.GET("/register", "#home-view"), blocks.PrimaryButtonStyle()) { @blocks.Text("Get Started") } @blocks.Button(blocks.GET("/login", "#home-view")) { @blocks.Text("Login") }
@blocks.PoweredBySonr() } }