refactor: remove unused component templates

This commit is contained in:
Prad Nukala
2024-10-07 10:39:50 -04:00
parent c35d3bb1ae
commit 37fb0b3aca
28 changed files with 156 additions and 313 deletions
+9 -8
View File
@@ -2,18 +2,19 @@ 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) {
@Header()
@SectionHero(home.Hero)
@Highlights()
@Features()
@Bento()
@Lowlights()
@CallToAction()
@Footer()
@sections.Header()
@sections.SectionHero(home.Hero)
@sections.Highlights()
@sections.Features()
@sections.Bento()
@sections.Lowlights()
@sections.CallToAction()
@sections.Footer()
}
}