package layout // Columns is a component that renders a flex container with a gap of 3 and a max width of 100% templ Columns() {
{ children... }
} templ Container() {
{ children... }
} // Rows is a component that renders a flex container with a gap of 2 and a max width of 100% templ Rows() {
{ children... }
} // Spacer is a component that renders a
tag templ Spacer() {
} templ Separator(text string) {
{ text }
}