ErrorPage.js 563 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
const ErrorPage = () => {
    return (
Kim, Subin's avatar
Kim, Subin committed
3
4
5
        <div className="d-flex bg-white" id="notfound">
            <div className="notfound">
                <img src="./ku-tiger.png" />
Kim, Subin's avatar
Kim, Subin committed
6
                <h1>404</h1>
Kim, Subin's avatar
Kim, Subin committed
7
                <h2 className="text-center">Oops! Page Not Be Found</h2>
Kim, Subin's avatar
Kim, Subin committed
8
                <p>Sorry but the page you are looking for does not exist, have been removed. name changed or is temporarily unavailable</p>
Kim, Subin's avatar
Kim, Subin committed
9
                <a className="text-center" href="/login">Back to login</a>
Kim, Subin's avatar
Kim, Subin committed
10
11
12
13
14
15
            </div>
        </div>
    )
}

export default ErrorPage