const FOOTER_LINKS = { Product: [ {label: 'Features', href: '#'}, {label: 'Pricing', href: '#'}, {label: 'Changelog', href: '#'}, {label: 'Roadmap', href: '#'}, ], Developers: [ {label: 'Documentation', href: '#'}, {label: 'API Reference', href: '#'}, {label: 'GitHub', href: '#'}, {label: 'Status', href: '#'}, ], Resources: [ {label: 'Blog', href: '#'}, {label: 'Guides', href: '#'}, {label: 'Community', href: '#'}, {label: 'Support', href: '#'}, ], Company: [ {label: 'About', href: '#'}, {label: 'Careers', href: '#'}, {label: 'Contact', href: '#'}, {label: 'Privacy', href: '#'}, ], }; interface SiteFooterProps { variant?: 'landing' | 'minimal'; } export function SiteFooter({variant = 'minimal'}: SiteFooterProps) { const isMinimal = variant === 'minimal'; if (isMinimal) { return ( ); } // Landing variant - full footer return ( ); }