"use client"; import { useTranslations } from "next-intl"; import { Link } from "@/i18n/navigation"; import { getAppName } from "@/lib/env"; export function Footer() { const t = useTranslations("common"); const appName = getAppName(); const year = new Date().getFullYear(); return ( ); }