import { notFound } from 'next/navigation' /** * Catch-all de rutas inexistentes bajo un idioma: dispara notFound() para que * se renderice la 404 temática (`[locale]/not-found.tsx`) dentro del layout. */ export default function CatchAllNotFound() { notFound() }