Files
sonr/pkg/nebula/components/dash/page.templ
T

19 lines
361 B
Templ
Raw Normal View History

2024-10-07 13:59:29 -04:00
package dash
import (
"github.com/onsonr/sonr/pkg/nebula/components/home/sections"
2024-10-07 13:59:29 -04:00
"github.com/onsonr/sonr/pkg/nebula/global/styles"
)
templ View() {
2024-10-07 13:59:29 -04:00
@styles.LayoutNoBody("Sonr.ID", true) {
@sections.Header()
@sections.Highlights()
@sections.Features()
@sections.Bento()
@sections.Lowlights()
@sections.CallToAction()
@sections.Footer()
}
}