2024-11-06 13:32:51 -05:00
|
|
|
|
2024-11-23 01:28:58 -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
|
2024-11-23 01:28:58 -05:00
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|