mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 10:21:40 +00:00
20 lines
392 B
Templ
20 lines
392 B
Templ
package home
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/onsonr/sonr/nebula/components/home/sections"
|
||
|
|
"github.com/onsonr/sonr/nebula/global/styles"
|
||
|
|
)
|
||
|
|
|
||
|
|
templ View() {
|
||
|
|
@styles.LayoutNoBody("Sonr.ID", true) {
|
||
|
|
@sections.Header()
|
||
|
|
@sections.Hero(hero)
|
||
|
|
@sections.Highlights(highlights)
|
||
|
|
@sections.Mission()
|
||
|
|
@sections.Architecture()
|
||
|
|
@sections.Lowlights()
|
||
|
|
@sections.CallToAction()
|
||
|
|
@sections.Footer()
|
||
|
|
}
|
||
|
|
}
|