import { Title, Text, Button, Container, Group } from "@mantine/core"; import classes from "./error-404.module.css"; import { Link } from "react-router-dom"; import { Helmet } from "react-helmet-async"; import { useTranslation } from "react-i18next"; export function Error404() { const { t } = useTranslation(); return ( <> {t("404 page not found")} - Docmost {t("404 page not found")} {t("Sorry, we can't find the page you are looking for.")} ); }