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", }, { name: "Github", href: "https://github.com/haelnorr/projectreshoot", }, } } // Returns the template fragment for the Footer templ Footer() { }