feat: logout route and button

This commit is contained in:
efim
2023-11-14 04:18:25 +00:00
parent 1297fcf35d
commit 83e81ec011
9 changed files with 130 additions and 22 deletions

View File

@@ -4,7 +4,12 @@ type baseData struct {
Title string
}
type headerData struct {
Title string
}
type pageData struct {
Base baseData
Content interface {}
Content any
Header headerData
}