import Link from "next/link"; import { useLocale, useTranslations } from "next-intl"; import { Container } from "@/components/layout/container"; import { getLocalizedPath } from "@/lib/locale"; const navItems = [ { key: "home", path: "" }, { key: "portfolio", path: "/portfolio" }, { key: "products", path: "/products" }, { key: "about", path: "/about" }, { key: "contact", path: "/contact" }, ]; type SiteFooterProps = { isAdmin?: boolean; }; export function SiteFooter({ isAdmin = false }: SiteFooterProps) { const locale = useLocale(); const tNav = useTranslations("navigation"); const tFooter = useTranslations("footer"); return ( ); }