import Link from "next/link"; import { useLocale, useTranslations } from "next-intl"; const navItems = [ { key: "home", path: "" }, { key: "portfolio", path: "/portfolio" }, { key: "products", path: "/products" }, { key: "about", path: "/about" }, { key: "contact", path: "/contact" }, { key: "root", path: "/root" }, ]; export function Footer() { const locale = useLocale(); const tNav = useTranslations("navigation"); const tFooter = useTranslations("footer"); return ( ); }