diff --git a/src/App.tsx b/src/App.tsx index 0d9084e..661cc83 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -29,7 +29,7 @@ const App: FunctionComponent = () => {
- + diff --git a/src/containers/not-found/not-found.tsx b/src/containers/not-found/not-found.tsx index f5c959f..2b74e12 100644 --- a/src/containers/not-found/not-found.tsx +++ b/src/containers/not-found/not-found.tsx @@ -1,25 +1,19 @@ import React, { FunctionComponent } from 'react'; -import { Container, Paper, Typography } from '@material-ui/core'; -import { makeStyles } from '@material-ui/core/styles'; +import { Box, Container, Link, Paper, Typography } from '@material-ui/core'; -const page404Styles = makeStyles((theme) => ({ - root: { - padding: theme.spacing(3, 2), - }, -})); - -const NotFound: FunctionComponent = () => { - const classes = page404Styles(); - return ( - - +const NotFound: FunctionComponent = () => ( + + + 404 Page Not Found - Please head to the home. - - - ); -}; + + Please head to the home. + + + + +); export default NotFound;