import Link from "next/link"; import { Mic } from "lucide-react"; export function SiteFooter() { return ( ); } function FooterCol({ title, links }: { title: string; links: [string, string][] }) { return (

{title}

); }