Refactored navbar and added error page

This commit is contained in:
2025-02-06 14:24:23 +11:00
parent 1c30007af4
commit 399cd43626
17 changed files with 409 additions and 115 deletions

View File

@@ -0,0 +1,15 @@
package nav
type NavItem struct {
name string
href string
}
func getNavItems() []NavItem {
return []NavItem{
{
name: "Movies",
href: "/movies",
},
}
}