Files
oslstats/internal/view/homeview/index_page.templ
2026-02-09 19:30:47 +11:00

14 lines
299 B
Plaintext

package homeview
import "git.haelnorr.com/h/oslstats/internal/view/baseview"
// Page content for the index page
templ IndexPage() {
@baseview.Layout("OSL Stats") {
<div class="text-center mt-25">
<div class="text-4xl lg:text-6xl">OSL Stats</div>
<div>Placeholder text</div>
</div>
}
}