first commit

This commit is contained in:
Olu Amey
2021-12-18 20:23:31 -05:00
commit bce242fd22
308 changed files with 42398 additions and 0 deletions
File diff suppressed because one or more lines are too long
+37
View File
@@ -0,0 +1,37 @@
import React from 'react';
import { useHistory } from 'react-router-dom';
import Svg from './Svg';
function Error() {
const history = useHistory();
const goBack = (e) => {
e.preventDefault();
history.goBack();
};
return (
<>
<div className="appie-error-area">
<div className="container">
<div className="row justify-content-center">
<div className="col-lg-6">
<div className="appie-error-content text-center">
<Svg />
<span>Sorry!</span>
<h3 className="title">The page cant be found.</h3>
<p>
The page you're looking for isn't available. Use the go back
button below
</p>
<a onClick={(e) => goBack(e)} href="#">
Go Back <i className="fal fa-arrow-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</>
);
}
export default Error;