package layout
import "github.com/fossyy/filekeeper/types"
templ Base(title string){
{ title }
{ children... }
}
templ BaseAuth(title string){
{ title }
{ children... }
}
templ Navbar(user types.User) {
if user.Authenticated {
{ user.Username }
{ user.Email }
} else {
Sign up
Sign in
}
}
templ Footer() {
}