import { getTranslations } from "next-intl/server"; import { Link } from "@/i18n/navigation"; import { LocaleSwitcher } from "@/components/locale-switcher"; export async function SiteFooter() { const t = await getTranslations("footer"); const tc = await getTranslations("courses"); const year = new Date().getFullYear(); return ( ); }