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

21 lines
458 B
Templ
Raw Normal View History

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