import React from "react" import { makeStyles } from "@material-ui/core/styles" import { Container, Typography } from "@material-ui/core" import { Link } from "gatsby-theme-material-ui" import Layout from "@components/Layout/Layout" import SEO from "@components/SEO" const useStyles = makeStyles(() => ({ container: { minHeight: "100vh", display: "flex", flexDirection: "column", justifyContent: "center", textAlign: "center", }, layout: { padding: "0", }, })) const NotFoundPage = ({ location }) => { const classes = useStyles() return ( Page not found Looks like you've followed a broken link or entered a URL that doesn't exist on this site. Back to site ) } export default NotFoundPage