import { Link } from "@repo/i18n/navigation" import { MainLayout } from "@repo/ui/MainLayout" import { useTranslations } from "next-intl" /** * Note that `app/[locale]/[...rest]/page.tsx` is necessary for this page to render. */ const NotFound: React.FC = () => { const t = useTranslations() return (

{t("errors.error")} 404 - {t("errors.not-found")}

{t("errors.page-doesnt-exist")}{" "} {t("errors.return-to-home-page")}

) } export default NotFound