"use client"; import { Link, useTranslation } from "@/i18n/navigation"; const footerSections = [ { titleKey: "community" as const, links: [ { labelKey: "join" as const, href: "/join" }, { labelKey: "meetups" as const, href: "/meetups" }, { labelKey: "dating" as const, href: "/dating" }, { labelKey: "map" as const, href: "#" }, ], }, { titleKey: "tools" as const, links: [ { labelKey: "dashboard" as const, href: "/dashboard" }, { labelKey: "cost" as const, href: "/tools" }, { labelKey: "ai" as const, href: "/ai" }, { labelKey: "coworking" as const, href: "#" }, { labelKey: "compare" as const, href: "#" }, ], }, { titleKey: "resources" as const, links: [ { labelKey: "guide" as const, href: "#" }, { labelKey: "cityGuide" as const, href: "#" }, { labelKey: "stories" as const, href: "#" }, { labelKey: "report" as const, href: "/report" }, { labelKey: "faq" as const, href: "#" }, ], }, { titleKey: "about" as const, links: [ { labelKey: "aboutUs" as const, href: "/about" }, { labelKey: "pricing" as const, href: "/pricing" }, { labelKey: "gigs" as const, href: "/gigs" }, { labelKey: "recruit" as const, href: "/jobs" }, { labelKey: "terms" as const, href: "#" }, { labelKey: "privacy" as const, href: "#" }, { labelKey: "contact" as const, href: "#" }, ], }, ]; export default function Footer() { const { t } = useTranslation("footer"); return ( ); }