Back
Footer
Full Footer
With Social Links
Pass SocialLinks to render icon links in the copyright bar.
With Newsletter Signup
Pass Newsletter to add an email subscription form.
Minimal (brand + copyright only)
Usage
@layout.Footer(layout.FooterProps{
Brand: myLogoTempl(),
Copyright: "© 2025 Acme Inc.",
SocialLinks: []layout.SocialLink{
{Label: "GitHub", Href: "https://github.com/...", Icon: githubIcon()},
{Label: "Twitter", Href: "https://twitter.com/...", Icon: twitterIcon()},
},
Columns: []layout.FooterColumn{
{
Title: "Product",
Links: []layout.FooterLink{
{Label: "Features", Href: "/features"},
{Label: "Pricing", Href: "/pricing"},
},
},
},
})