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

20 lines
410 B
Templ
Raw Normal View History

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