feat: add ModalForm component

This commit is contained in:
Prad Nukala
2024-10-07 13:59:29 -04:00
parent b633d21ea8
commit f7f0c11587
9 changed files with 226 additions and 299 deletions
+20
View File
@@ -0,0 +1,20 @@
package dash
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) {
@sections.Header()
@sections.SectionHero(home.Hero)
@sections.Highlights()
@sections.Features()
@sections.Bento()
@sections.Lowlights()
@sections.CallToAction()
@sections.Footer()
}
}