package templates
templ head(title string) {
{ title }
}
templ footer(timestamp string) {
}
templ navbar(loggedIn bool) {
}
templ loginButton(loggedIn bool) {
if loggedIn {
Profile
} else {
}
}
templ errorMessage(title string, content string) {
{ content }
}