package styles
import "github.com/onsonr/sonr/pkg/nebula/global/cdn"
templ Layout(title string, remote bool) {
@cdn.Alpine()
@cdn.Htmx()
@cdn.Styles()
{ title }
{ children... }
}
templ LayoutNoBody(title string, remote bool) {
@cdn.Alpine()
@cdn.Htmx()
@cdn.Styles()
{ title }
{ children... }
}
templ OpenModal(title, description string) {
}