diff --git a/webui/src/pages/notfound/NotFoundPage.tsx b/webui/src/pages/notfound/NotFoundPage.tsx index ae84ac3eea26a70892a7913949f4bfb5da258d39..2aba9ceffc5e0538f1fa6d69a779dd04138c67dd 100644 --- a/webui/src/pages/notfound/NotFoundPage.tsx +++ b/webui/src/pages/notfound/NotFoundPage.tsx @@ -1,19 +1,34 @@ +import wrap from '@arrows/composition/internal/wrap'; 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(20), + marginTop: theme.spacing(10), }, logo: { height: '350px', + display: 'block', + marginLeft: 'auto', + marginRight: 'auto', }, - container: { - display: 'flex', - alignItems: 'center', + icon: { + display: 'block', + marginLeft: 'auto', + marginRight: 'auto', + fontSize: '80px', + }, + backLink: { + textDecoration: 'none', + color: theme.palette.text.primary, + }, + header: { + fontSize: '30px', + textAlign: 'center', }, })); @@ -21,15 +36,16 @@ function NotFoundPage() { const classes = useStyles(); return (
-
-

404 – Page not found

- git-bug -

Go back to start page

-
+

404 – Page not found

+ git-bug + +

Go back to start page

+ +
); }