import { ConfiguredIcon } from '@/components/ConfiguredIcon'; import type { NormalizedFooter } from '@/lib/types'; export function Footer({ footer, className = '', }: { footer: NormalizedFooter | null; className?: string; }) { if (!footer) { return null; } const { socials, links: columns, attribution } = footer; return ( ); }