aboutsummaryrefslogtreecommitdiff
path: root/web/index.go
blob: 7057cc8a902df1bba9f45c0f41208455970d564e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)
}