mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
19 lines
361 B
Templ
19 lines
361 B
Templ
package dash
|
|
|
|
import (
|
|
"github.com/onsonr/sonr/pkg/nebula/components/home/sections"
|
|
"github.com/onsonr/sonr/pkg/nebula/global/styles"
|
|
)
|
|
|
|
templ View() {
|
|
@styles.LayoutNoBody("Sonr.ID", true) {
|
|
@sections.Header()
|
|
@sections.Highlights()
|
|
@sections.Features()
|
|
@sections.Bento()
|
|
@sections.Lowlights()
|
|
@sections.CallToAction()
|
|
@sections.Footer()
|
|
}
|
|
}
|