import React from "react"; import { Frown } from 'lucide-react'; import * as styles from "./NotFound.module.scss"; import { useTranslation } from 'react-i18next'; import { Helmet } from "react-helmet"; const NotFoundPage = () => { const { t } = useTranslation(); return <> 404: {t("system.notfound")}

404: {t("system.notfound")}

; } export default NotFoundPage;