mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 18:31:41 +00:00
22 lines
451 B
Templ
22 lines
451 B
Templ
|
|||
|
|
package home
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/onsonr/sonr/pkg/webapp/components/ui"
|
||
|
|
landing "github.com/onsonr/sonr/pkg/webapp/pages/home/internal"
|
||
|
|
)
|
||
|
|
|
||
|
|
// View renders the home page
|
||
|
|
templ Page() {
|
||
|
|
@ui.LayoutNoBody("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()
|
||
|
|
}
|
||
|
|
}
|