import Link from "next/link"; import { BuiltWith } from "@turbostarter/ui-web/built-with"; import { Icons } from "@turbostarter/ui-web/icons"; import { appConfig } from "~/config/app"; import { pathsConfig } from "~/config/paths"; import { I18nControls } from "~/modules/common/i18n/controls"; const REPO_URL = "https://github.com/alezmad/claudemesh"; const OSS_URL = "https://github.com/alezmad/claude-intercom"; const columns = [ { label: "product", items: [ { title: "Docs", href: "#docs" }, { title: "Pricing", href: pathsConfig.marketing.pricing }, { title: "Changelog", href: "#changelog" }, { title: "Contact", href: pathsConfig.marketing.contact }, ], }, { label: "protocol", items: [ { title: "GitHub", href: REPO_URL }, { title: "claude-intercom (OSS)", href: OSS_URL }, { title: "Protocol spec", href: `${OSS_URL}#protocol` }, { title: "Self-host broker", href: `${REPO_URL}#self-host` }, ], }, ]; export const Footer = () => { return ( ); };