From cdf655f869bd0993b52f4268f058571740b1cf4d Mon Sep 17 00:00:00 2001 From: Lena Date: Sun, 28 Feb 2021 02:58:53 +0100 Subject: Add 404 page #10 --- webui/src/pages/notfound/NotFoundPage.tsx | 37 +++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 webui/src/pages/notfound/NotFoundPage.tsx (limited to 'webui/src/pages/notfound/NotFoundPage.tsx') diff --git a/webui/src/pages/notfound/NotFoundPage.tsx b/webui/src/pages/notfound/NotFoundPage.tsx new file mode 100644 index 00000000..ae84ac3e --- /dev/null +++ b/webui/src/pages/notfound/NotFoundPage.tsx @@ -0,0 +1,37 @@ +import React from 'react'; + +import { makeStyles } from '@material-ui/core/styles'; + +const useStyles = makeStyles((theme) => ({ + main: { + maxWidth: 1000, + margin: 'auto', + marginTop: theme.spacing(20), + }, + logo: { + height: '350px', + }, + container: { + display: 'flex', + alignItems: 'center', + }, +})); + +function NotFoundPage() { + const classes = useStyles(); + return ( +
+
+

404 – Page not found

+ git-bug +

Go back to start page

+
+
+ ); +} + +export default NotFoundPage; -- cgit