Footer
Composable footer with brand section, multi-column link groups, and copyright.
Modular Build
Interactive Preview
Initialising Operative...
Architecture
Component Architecture
Footer/
Prop Usage
| Prop | Type | Default | Description |
|---|---|---|---|
brandDescription | string | — | Tagline shown under the logo. |
sections | { title: string; links: { label: string; href: string }[] }[] | — | Link column groups rendered in the footer. |
className | string | — | Additional classes on the footer wrapper. |
Usage
import { Footer } from '@/ui';
<Footer
brandDescription="Built for speed and aesthetics."
sections={[
{
title: 'Product',
links: [
{ label: 'Features', href: '#features' },
{ label: 'Pricing', href: '#pricing' },
],
},
{
title: 'Company',
links: [
{ label: 'About', href: '/about' },
{ label: 'Blog', href: '/blog' },
],
},
]}
/>