Full Footer
Minimal
Props
| Prop | Type | Description |
|---|---|---|
| brand | ReactNode | Brand name or logo |
| tagline | string | Short description below the brand |
| groups | FooterLinkGroup[] | Array of { title, links: { label, href }[] } |
| bottom | ReactNode | Content for the bottom bar (e.g. copyright) |
| className | string | Additional classes on the root element |
Usage
<Footer
brand="Acme"
tagline="Build and scale your apps."
groups={[
{
title: "Product",
links: [
{ label: "Features", href: "/features" },
{ label: "Pricing", href: "/pricing" },
],
},
]}
bottom="© 2026 Acme, Inc."
/>