Files
sonr/pkg/webapp/pages/home/page.templ
T

22 lines
453 B
Templ

package home
import (
"github.com/onsonr/sonr/pkg/webapp/components/layout"
landing "github.com/onsonr/sonr/pkg/webapp/pages/home/internal"
)
// View renders the home page
templ Page() {
@layout.NoBody("Sonr.ID", true) {
@landing.Header(header)
@landing.Hero(hero)
@landing.Highlights(highlights)
@landing.Mission(mission)
@landing.Architecture(arch)
@landing.Lowlights(lowlights)
@landing.CallToAction(cta)
@landing.Footer()
}
}