type FooterLink = { label: string; href?: string; onClick?: () => void; }; type FooterColumn = { title: string; items: FooterLink[]; }; const FooterSimpleCard = ({ brand, columns, copyright, links, }: { brand: string; columns: FooterColumn[]; copyright: string; links: FooterLink[]; }) => { return ( ); }; export default FooterSimpleCard;