mirror of
https://github.com/Unkn0wnCat/data-toolbox-site.git
synced 2025-04-29 18:16:21 +02:00
23 lines
No EOL
553 B
TypeScript
23 lines
No EOL
553 B
TypeScript
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 <>
|
|
<Helmet><title>404: {t("system.notfound")}</title></Helmet>
|
|
<main>
|
|
<div className={styles.layoutBox}>
|
|
<h1>404: {t("system.notfound")} <Frown/></h1>
|
|
|
|
</div>
|
|
</main>
|
|
</>;
|
|
}
|
|
|
|
export default NotFoundPage; |