Skip to content

Footer

The Footer component supports multiple layouts for different needs.

<Footer layout="simple" />
<Footer
layout="columns"
columns={3}
linkGroups={[
{
title: 'Product',
links: [
{ label: 'Features', href: '/features' },
{ label: 'Pricing', href: '/pricing' },
]
},
{
title: 'Company',
links: [
{ label: 'About', href: '/about' },
{ label: 'Contact', href: '/contact' },
]
}
]}
/>
<Footer layout="minimal" />
<Footer
layout="stacked"
tagline="Building the future of web development."
/>
<Footer
socialLinks={[
{ platform: 'github', href: 'https://github.com/...' },
{ platform: 'twitter', href: 'https://twitter.com/...' },
{ platform: 'linkedin', href: 'https://linkedin.com/...' },
]}
/>
<Footer
legalLinks={[
{ label: 'Privacy', href: '/privacy' },
{ label: 'Terms', href: '/terms' },
]}
/>
<Footer background="invert" />
PropTypeDefaultDescription
layout'simple' | 'columns' | 'minimal' | 'stacked''simple'Layout style
columns2 | 3 | 43Column count
background'default' | 'secondary' | 'invert''default'Background color
navNavItem[]Override navigation
linkGroupsFooterLinkGroup[][]Link groups
socialLinksSocialLink[][]Social links
showSocialbooleantrueShow social links
showCopyrightbooleantrueShow copyright
copyrightstringAuto-generatedCopyright text
legalLinksLegalLink[][]Legal links
hideLogobooleanfalseHide logo
taglinestringTagline under logo
<Footer
layout="columns"
columns={4}
background="invert"
linkGroups={[
{ title: 'Product', links: [...] },
{ title: 'Company', links: [...] },
{ title: 'Resources', links: [...] },
{ title: 'Legal', links: [...] },
]}
socialLinks={[...]}
tagline="Making web development faster."
/>
<Footer
layout="simple"
socialLinks={[
{ platform: 'twitter', href: '...' },
{ platform: 'rss', href: '/feed.xml' },
]}
/>