package styles
templ Layout(title string, remote bool) {
@Alpine(remote)
@Htmx(remote)
@Styles(remote)
{ title }
{ children... }
}
templ LayoutNoBody(title string, remote bool) {
@Alpine(remote)
@Htmx(remote)
@Styles(remote)
{ title }
{ children... }
}
templ OpenModal(title, description string) {
}