import { getTranslations } from "next-intl/server"; export default async function NotFound() { const t = await getTranslations(); return (

404

{t('pageNotFound')}

{t('pageNotFoundDescription')}

); }