Library/Footer

Footer

Composable footer with brand section, multi-column link groups, and copyright.

Modular Build
Interactive Preview
Initialising Operative...

Architecture

Component Architecture
Footer/

Prop Usage

PropTypeDefaultDescription
brandDescription
stringTagline shown under the logo.
sections
{ title: string; links: { label: string; href: string }[] }[]Link column groups rendered in the footer.
className
stringAdditional 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' }, ], }, ]} />