'use client' import Link from 'next/link' const footerSections = [ { title: 'Product', links: [ { label: 'Features', href: '/features' }, { label: 'Pricing', href: '/pricing' }, ], }, { title: 'Company', links: [ { label: 'Blog', href: '/blog' }, { label: 'Careers', href: '/careers' }, ], }, { title: 'Resources', links: [ { label: 'Changelog', href: '/changelog' }, { label: 'Demo', href: '/demo' }, ], }, { title: 'Legal', links: [ { label: 'Privacy', href: '/privacy' }, { label: 'Terms', href: '/terms' }, ], }, ] export function Footer() { return ( ) }