import { Button, Paper, Text } from "@mantine/core"; import { Layout } from "../components/layouts/layout"; import { useTranslation } from "react-i18next"; export const NotFoundPage = () => { const { t } = useTranslation(); return ( {t("notFoundTitle")} {t("notFoundSubtitle")} ); };