import { getTranslations } from 'next-intl/server' import { getRealmName } from '@/lib/realm' /** * Pie de página — réplica del partial Django `partials/footer.html` * (enlaces legales + copyright + crédito de diseño) con las clases del tema real. */ export async function Footer() { const t = await getTranslations('UI') const year = new Date().getFullYear() const realmName = await getRealmName() return ( ) }