"use client"; import { Link, useTranslation } from "@/i18n/navigation"; const footerSections = [ { titleKey: "guide" as const, links: [ { labelKey: "roadmap" as const, href: "#roadmap" }, { labelKey: "tools" as const, href: "#tools" }, { labelKey: "destinations" as const, href: "https://meetup.hackrobot.cn/", openInNewTab: true }, ], }, { titleKey: "resources" as const, links: [ { labelKey: "remoteJobs" as const, href: "#" }, { labelKey: "visa" as const, href: "#" }, { labelKey: "coliving" as const, href: "#" }, { labelKey: "insurance" as const, href: "#" }, ], }, { titleKey: "community" as const, links: [ { labelKey: "discord" as const, href: "#" }, { labelKey: "wechat" as const, href: "https://vip.hackrobot.cn/", openInNewTab: true }, { labelKey: "jike" as const, href: "#" }, ], }, { titleKey: "about" as const, links: [ { labelKey: "aboutUs" as const, href: "/about", internal: true }, { labelKey: "recruit" as const, href: "/jobs", internal: true }, { labelKey: "privacy" as const, href: "/privacy", internal: true, openInNewTab: true }, { labelKey: "contact" as const, href: "#" }, ], }, ]; export default function Footer() { const { t } = useTranslation("footer"); return ( ); }