ErrorPage.js 568 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const ErrorPage = () => {
    return (
        <div className="bg-white" id="notfound">
            <div className="notfound">
                <div className="notfound-404" style={{ backgroundImage: `url(/images/emoji.png)` }}></div>
                <h1>404</h1>
                <h2>Oops! Page Not Be Found</h2>
                <p>Sorry but the page you are looking for does not exist, have been removed. name changed or is temporarily unavailable</p>
                <a href="/">Back to homepage</a>
            </div>
        </div>
    )
}

export default ErrorPage