const FOOTER_LINKS = { Platform: ['Git Repositories', 'Issues & PRs', 'Collaborative Rooms', 'AI Agents'], Skills: ['Skill Registry', 'Publish a Skill', 'Skill Documentation', 'Community'], Developers: ['Documentation', 'CLI Reference', 'API Reference', 'Status'], Company: ['About', 'Careers', 'Contact', 'Privacy'], }; const FOOTER_HREFS: Record = { Platform: ['/solutions', '/solutions', '/solutions/rooms', '/solutions'], Skills: ['/skills', '/skills/publish', '/skills/docs', '/network'], Developers: ['/docs', '/docs', '/network/api', '/status'], Company: ['/about', '/careers', '/contact', '/privacy'], }; interface LandingFooterProps { onRegister: () => void; } export function LandingFooter({onRegister}: LandingFooterProps) { return ( ); }