import { getTranslations } from 'next-intl/server' /** * 404 temática (dentro del layout de [locale] → cabecera/vídeo/pie + tema). * Se muestra cuando se llama a notFound() dentro de un segmento de idioma, * incluido el catch-all `[...rest]` para rutas inexistentes. */ export default async function NotFound() { const t = await getTranslations('NotFound') return (

{t('title')}

{t('message')}

) }