ErrorPage.js 509 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
6
7
        <div className="d-flex flex-column justify-content-center align-items-center vh-100">
            <img className="mb-5" src={process.env.PUBLIC_URL + '/ku-tiger.png'} alt="어흥이" />
            <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="/login">Back to login</a>
Kim, Subin's avatar
Kim, Subin committed
8
9
10
11
12
        </div>
    )
}

export default ErrorPage