"use client"; import Link from "next/link"; import { useLang } from "@/context/LanguageContext"; import { t } from "@/lib/translations"; export default function Footer() { const { lang } = useLang(); const tr = t[lang].footer; const footerLinks = [ { href: "/privacy", label: tr.privacy }, { href: "/terms", label: tr.terms }, { href: "/faq", label: tr.faq }, { href: "/contact", label: tr.support }, ]; return ( ); }