aboutsummaryrefslogtreecommitdiff
path: root/web/index.go
blob: 6ef84b5116f7aa80483555991a702b1dd08f5091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package web

import "github.com/a-h/templ"

func Base(title string, body templ.Component) templ.Component {
	return base(title, body)
}

func Index() templ.Component {
	return index()
}

func ErrorPage(msg string) templ.Component {
	return errorPage(msg)
}

func Bench() templ.Component {
	return bench()
}