Marketing
Footer
Multi-column site footer with brand name, tagline, navigation columns, and copyright line.
Open in StorybookUsage
tsx
import { Footer } from '@/components/marketing/footer'
<Footer
brand="MarketMaker.cc"
tagline="AI-powered algorithmic trading for everyone."
columns={[
{
title: 'Product',
links: [
{ label: 'Features', href: '#features' },
{ label: 'Roadmap', href: '#roadmap' },
{ label: 'Whitepaper', href: '/whitepaper' },
],
},
{
title: 'Community',
links: [
{ label: 'GitHub', href: 'https://github.com/suenot' },
{ label: 'Twitter', href: 'https://twitter.com/suenot' },
{ label: 'Telegram', href: 'https://t.me/marketmakercc' },
],
},
]}
copyright="© 2025 MarketMaker.cc. All rights reserved."
/>Props
| Prop | Type |
|---|---|
| brand* | string |
| tagline | string |
| columns | FooterColumn[] |
| copyright | string |
| className | string |