Files
sonr/pkg/nebula/components/home/page.templ
T

20 lines
400 B
Templ
Raw Normal View History

package home
import (
2024-10-11 16:47:52 -04:00
"github.com/onsonr/sonr/pkg/nebula/components/home/sections"
"github.com/onsonr/sonr/pkg/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()
}
}