import React from 'react'; import { makeStyles } from '@material-ui/core/styles'; import ArrowBackIcon from '@material-ui/icons/ArrowBack'; const useStyles = makeStyles((theme) => ({ main: { maxWidth: 1000, margin: 'auto', marginTop: theme.spacing(10), }, logo: { height: '350px', display: 'block', marginLeft: 'auto', marginRight: 'auto', }, icon: { display: 'block', marginLeft: 'auto', marginRight: 'auto', fontSize: '80px', }, backLink: { textDecoration: 'none', color: theme.palette.text.primary, }, header: { fontSize: '30px', textAlign: 'center', }, })); function NotFoundPage() { const classes = useStyles(); return (

404 – Page not found

git-bug Logo

Go back to start page

); } export default NotFoundPage;