Create Error Page

This commit is contained in:
2022-09-26 10:40:02 -04:00
parent 3747e2a07d
commit a4c14bb67c
8 changed files with 168 additions and 108 deletions

7
src/pages/Error.js Normal file
View File

@@ -0,0 +1,7 @@
import Neon from '../componets/Neon'
export default function ErrorNotFound() {
return (
<Neon color='#fff'><h1 className='neon'>ERROR 404</h1><br /><h3 className='neon'>URL Not Found</h3></Neon>
)
}