Files
sonr/pkg/nebula/marketing/page.templ
T

22 lines
712 B
Templ
Raw Normal View History

2024-11-06 13:32:51 -05:00
package marketing
import "github.com/onsonr/sonr/pkg/nebula/global/styles"
// ╭─────────────────────────────────────────────────────────╮
// │ Final Rendering │
// ╰─────────────────────────────────────────────────────────╯
// View renders the home page
templ View() {
@styles.LayoutNoBody("Sonr.ID", true) {
@Header()
@Hero()
@Highlights()
@Mission()
@Architecture()
@Lowlights()
@CallToAction()
@Footer()
}
}