mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
- **refactor: move marketing pages to** - **feat: add role select input**
22 lines
712 B
Templ
22 lines
712 B
Templ
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()
|
|
}
|
|
}
|