package footer type FooterItem struct { name string href string } func getFooterItems() []FooterItem { return []FooterItem{ { name: "About", href: "/about", }, { name: "Github", href: "https://github.com/haelnorr/projectreshoot", }, } } templ Footer() { }