mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 01:41:44 +00:00
20 lines
327 B
Templ
20 lines
327 B
Templ
package home
|
|
|
|
import (
|
|
"github.com/onsonr/sonr/pkg/nebula/components/blocks"
|
|
"github.com/onsonr/sonr/pkg/nebula/models"
|
|
)
|
|
|
|
templ View(home *models.Home) {
|
|
@blocks.LayoutNoBody("Sonr.ID", true) {
|
|
@Header()
|
|
@SectionHero(home.Hero)
|
|
@Highlights()
|
|
@Features()
|
|
@Bento()
|
|
@Lowlights()
|
|
@CallToAction()
|
|
@Footer()
|
|
}
|
|
}
|