import Link from "next/link"; const columns = [ { heading: "Product", links: [ { label: "Blog", href: "/blog" }, { label: "Community", href: "/community" }, ], }, { heading: "Resources", links: [ { label: "Docs", href: "/docs/getting-started" }, { label: "Changelog", href: "/docs/changelog" }, ], }, { heading: "Legal", links: [ { label: "Privacy", href: "/privacy-policy" }, { label: "Terms", href: "/terms-of-service" }, { label: "EULA", href: "/eula" }, ], }, { heading: "Social", links: [ { label: "GitHub", href: "https://github.com/manaflow-ai/cmux" }, { label: "X / Twitter", href: "https://twitter.com/manaflowai" }, { label: "Discord", href: "https://discord.gg/xsgFEVrWCZ" }, { label: "Contact", href: "mailto:founders@manaflow.com" }, ], }, ]; function isExternal(href: string) { return href.startsWith("http") || href.startsWith("mailto:"); } export function SiteFooter() { const year = new Date().getFullYear(); return ( ); }