import type { JSX } from "react" import { getTranslations } from "next-intl/server" import { Link } from "@/i18n/routing" export async function Footer({ locale }: { readonly locale?: string } = {}): Promise { const t = locale ? await getTranslations({ locale, namespace: "footer" }) : await getTranslations("footer") const currentYear = new Date().getUTCFullYear() return ( ) }