package footer type FooterItem struct { name string href string } // Specify the links to show in the footer func getFooterItems() []FooterItem { return []FooterItem{ { name: "About", href: "/about", }, } } // Returns the template fragment for the Footer templ Footer() { }