import React, { FC } from 'react' import { makeStyles } from '@material-ui/styles' import { Theme } from '@material-ui/core' import SEO from '../components/seo' import { Typography, Container } from '@material-ui/core' const useStyles = makeStyles((theme: Theme) => ({ root: { marginTop: theme.spacing(8), marginBottom: theme.spacing(2), }, })) const NotFoundPage: FC = () => { const classes = useStyles() return ( NOT FOUND You just hit a route that doesn't exist... the sadness. ) } export default NotFoundPage