import { getTranslations } from 'next-intl/server' import { Link } from '@/i18n/navigation' /** * Caja de servicio con la estructura EXACTA de Django: title-box-content con *

+ enlaces "back-to-account" / "back-to-account-responsive", y el cuerpo * en body-box-content justified. Se usa dentro de . */ export async function ServiceBox({ heading, children, }: { heading?: string children: React.ReactNode }) { const t = await getTranslations('Services') return (

{heading ?? t('info')}

{t('back')} {t('backShort')}
{children}
) }