diff --git a/frontend/src/pages/404.tsx b/frontend/src/pages/404.tsx index 99a50aa..6b84581 100644 --- a/frontend/src/pages/404.tsx +++ b/frontend/src/pages/404.tsx @@ -1,14 +1,7 @@ -import { - Button, - Container, - createStyles, - Group, - Text, - Title, -} from "@mantine/core"; +import { Button, Container, createStyles, Group, Title } from "@mantine/core"; import Link from "next/link"; -import Meta from "../components/Meta"; import { FormattedMessage } from "react-intl"; +import Meta from "../components/Meta"; const useStyles = createStyles((theme) => ({ root: { @@ -21,19 +14,13 @@ const useStyles = createStyles((theme) => ({ fontWeight: 900, fontSize: 220, lineHeight: 1, - marginBottom: `calc(${theme.spacing.xl} * 100)`, + marginBottom: 20, color: theme.colors.gray[2], [theme.fn.smallerThan("sm")]: { fontSize: 120, }, }, - - description: { - maxWidth: 500, - margin: "auto", - marginBottom: `calc(${theme.spacing.xl} * 100)`, - }, })); const ErrorNotFound = () => { @@ -47,12 +34,7 @@ const ErrorNotFound = () => { <FormattedMessage id="404.description" /> - - +