import { Button, Container, createStyles, Group, Text, Title, } from "@mantine/core"; import Link from "next/link"; import Meta from "../components/Meta"; import { FormattedMessage } from "react-intl"; const webroot = process.env.WEBROOT || ""; const useStyles = createStyles((theme) => ({ root: { paddingTop: 80, paddingBottom: 80, }, label: { textAlign: "center", fontWeight: 900, fontSize: 220, lineHeight: 1, marginBottom: `calc(${theme.spacing.xl} * 100)`, color: theme.colors.gray[2], [theme.fn.smallerThan("sm")]: { fontSize: 120, }, }, description: { maxWidth: 500, margin: "auto", marginBottom: `calc(${theme.spacing.xl} * 100)`, }, })); const ErrorNotFound = () => { const { classes } = useStyles(); return ( <>
404
<FormattedMessage id="404.description" />
); }; export default ErrorNotFound;