mirror of
https://github.com/kevin-DL/gothstarter.git
synced 2026-01-11 10:04:34 +00:00
12 lines
144 B
Plaintext
12 lines
144 B
Plaintext
package home
|
|
|
|
import (
|
|
"gothstarter/views/layouts"
|
|
)
|
|
|
|
templ Index() {
|
|
@layouts.Base() {
|
|
<div class="flex flex-col items-center"></div>
|
|
}
|
|
}
|