diff --git a/packages/website/src/pages/404.tsx b/packages/website/src/pages/404.tsx new file mode 100644 index 000000000..68f3f41ba --- /dev/null +++ b/packages/website/src/pages/404.tsx @@ -0,0 +1,35 @@ +import { Container, Title, Group, Button, Box, createStyles } from '@mantine/core'; +import Link from 'next/link'; + +const useStyles = createStyles((theme) => ({ + label: { + textAlign: 'center', + fontWeight: 900, + fontSize: 220, + lineHeight: 1, + marginBottom: theme.spacing.xl * 1.5, + color: theme.colorScheme === 'dark' ? theme.colors.dark![4] : theme.colors.gray![2], + + [theme.fn.smallerThan('sm')]: { + fontSize: 120, + }, + }, +})); + +export default function FourOhFourPage() { + const { classes } = useStyles(); + + return ( + + 404 + Not found. + + + + + + + ); +}