mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
20 lines
340 B
Templ
20 lines
340 B
Templ
package home
|
|
|
|
import (
|
|
"github.com/onsonr/sonr/pkg/nebula/components/blocks"
|
|
"github.com/onsonr/sonr/pkg/nebula/models"
|
|
)
|
|
|
|
templ View(hero *models.Hero) {
|
|
@blocks.LayoutNoBody("Sonr.ID", true) {
|
|
@MarketingHeader()
|
|
@SectionHero(hero)
|
|
@Highlights()
|
|
@Features()
|
|
@Bento()
|
|
@Lowlights()
|
|
@CallToAction()
|
|
@MarketingFooter()
|
|
}
|
|
}
|