terms page added

This commit was merged in pull request #13.
This commit is contained in:
victorAnumudu
2024-08-03 10:18:52 +01:00
parent 8dcc1ac5e6
commit dc3872f8df
15 changed files with 701 additions and 15 deletions
File diff suppressed because one or more lines are too long
+42
View File
@@ -0,0 +1,42 @@
"use client"
import React from 'react';
import Link from 'next/link';
// 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> */}
<Link href="/">
Go Back <i className="fal fa-arrow-right"></i>
</Link>
</div>
</div>
</div>
</div>
</div>
</>
);
}
export default Error;