mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
21 lines
458 B
Templ
21 lines
458 B
Templ
package home
|
|
|
|
import (
|
|
"github.com/onsonr/sonr/pkg/nebula/global/styles"
|
|
"github.com/onsonr/sonr/pkg/nebula/components/home/sections"
|
|
"github.com/onsonr/sonr/pkg/nebula/models"
|
|
)
|
|
|
|
templ View(home *models.Home) {
|
|
@styles.LayoutNoBody("Sonr.ID", true) {
|
|
@sections.Header()
|
|
@sections.SectionHero(home.Hero)
|
|
@sections.Highlights()
|
|
@sections.Features()
|
|
@sections.Bento()
|
|
@sections.Lowlights()
|
|
@sections.CallToAction()
|
|
@sections.Footer()
|
|
}
|
|
}
|