diff --git a/webui/src/pages/notfound/NotFoundPage.tsx b/webui/src/pages/notfound/NotFoundPage.tsx
index 57b186c59255389564192263353e6c7a0c9d7139..2c6f68540029055944c15cb4ee4e758d3c1c197a 100644
--- a/webui/src/pages/notfound/NotFoundPage.tsx
+++ b/webui/src/pages/notfound/NotFoundPage.tsx
@@ -1,7 +1,8 @@
import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
-import ArrowBackIcon from '@material-ui/icons/ArrowBack';
+
+import BackToListButton from '../../components/BackToListButton';
const useStyles = makeStyles((theme) => ({
main: {
@@ -22,8 +23,8 @@ const useStyles = makeStyles((theme) => ({
fontSize: '80px',
},
backLink: {
- textDecoration: 'none',
- color: theme.palette.text.primary,
+ marginTop: theme.spacing(1),
+ textAlign: 'center',
},
header: {
fontSize: '30px',
@@ -41,10 +42,9 @@ function NotFoundPage() {
className={classes.logo}
alt="git-bug Logo"
/>
-
- Go back to start page
-