package layouts
import "git.staur.ca/stobbsm/clustvirt/view/components"
templ StaticPage(title string, subtitle string, navBarItems []components.NavItem) {
Clustvirt
@header(title, subtitle, navBarItems)
{ children... }
}
templ hero(title string) {
{ title }
}
templ header(title string, subtitle string, navBarItems []components.NavItem) {
{ subtitle }
@components.NavBar(hero(title), navBarItems)
}
templ footer() {
}