add not-found-component

This commit is contained in:
2022-12-31 14:58:44 +01:00
parent 5daf48fcd7
commit 0425a61cb4
7 changed files with 108 additions and 122 deletions

View File

@@ -1,3 +1,10 @@
/**
* SVG minifyer: https://www.svgminify.com/
* SVG to JSX converter:
* https://react-svgr.com/playground/
* https://svg2jsx.com/
*/
import {ReactComponent as DownloadIcon} from '../images/cloud-download.svg';
import {ReactComponent as CloudIcon} from '../images/cloud.svg';
import {ReactComponent as Arrow} from '../images/arrow.svg';

View File

@@ -0,0 +1,8 @@
.not-found {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

View File

@@ -0,0 +1,19 @@
/**
* SVG minifyer: https://www.svgminify.com/
* SVG to JSX converter:
* https://react-svgr.com/playground/
* https://svg2jsx.com/
*/
import NotFoundImg from '../images/NotFound.jsx';
import './NotFound.css'
function NotFound () {
return (
<div className='not-found'>
<NotFoundImg/>
</div>
);
}
export default NotFound;