import Link from "next/link"; import { useTranslations } from "next-intl"; import { Container } from "./Container"; import { NavLink } from "./NavLink"; import { Logo } from "./shared/Logo"; export function Footer() { const t = useTranslations("HomePage"); const linkT = useTranslations("Link"); return ( ); }