"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: "#" }, ], }, { 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: "#community" }, { labelKey: "jike" as const, href: "#" }, { labelKey: "github" as const, href: "#" }, ], }, { titleKey: "about" as const, links: [ { labelKey: "aboutUs" as const, href: "#" }, { labelKey: "contribute" as const, href: "#" }, { labelKey: "privacy" as const, href: "#" }, { labelKey: "contact" as const, href: "#" }, ], }, ]; export default function Footer() { const { t } = useTranslation("footer"); return ( ); }