ErrorPage.js 584 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
import { Link } from "react-router-dom";

Kim, Subin's avatar
Kim, Subin committed
3
4
const ErrorPage = () => {
    return (
Kim, Subin's avatar
Kim, Subin committed
5
6
7
8
        <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>
Kim, Subin's avatar
Kim, Subin committed
9
            <Link to="/login" style={{ color: "crimson" }}>Back to login</Link>
Kim, Subin's avatar
Kim, Subin committed
10
11
12
13
14
        </div>
    )
}

export default ErrorPage