import { Button, Container, createStyles, Group, Title } from "@mantine/core"; import Link from "next/link"; import { FormattedMessage } from "react-intl"; import Meta from "../components/Meta"; const useStyles = createStyles((theme) => ({ root: { paddingTop: 80, paddingBottom: 80, }, label: { textAlign: "center", fontWeight: 900, fontSize: 220, lineHeight: 1, marginBottom: 20, color: theme.colors.gray[2], [theme.fn.smallerThan("sm")]: { fontSize: 120, }, }, })); const ErrorNotFound = () => { const { classes } = useStyles(); return ( <>
404
<FormattedMessage id="404.description" />
); }; export default ErrorNotFound;