mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 01:41:44 +00:00
22 lines
453 B
Templ
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()
|
|
}
|
|
}
|