Files
sonr/pkg/webapp/pages/landing.templ
T

26 lines
834 B
Templ
Raw Normal View History

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