feat: add login and registration pages

This commit is contained in:
Prad Nukala
2024-10-01 14:42:11 -04:00
parent d486becbc6
commit e807691c64
24 changed files with 385 additions and 101 deletions
+19
View File
@@ -0,0 +1,19 @@
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()
}
}