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

20 lines
327 B
Templ
Raw Normal View History

2024-10-01 14:42:11 -04:00
package home
import (
"github.com/onsonr/sonr/pkg/nebula/components/blocks"
"github.com/onsonr/sonr/pkg/nebula/models"
)
templ View(home *models.Home) {
2024-10-01 14:42:11 -04:00
@blocks.LayoutNoBody("Sonr.ID", true) {
@Header()
@SectionHero(home.Hero)
2024-10-01 14:42:11 -04:00
@Highlights()
@Features()
@Bento()
@Lowlights()
@CallToAction()
@Footer()
2024-10-01 14:42:11 -04:00
}
}