Commit 14427e14 authored by Kim, Subin's avatar Kim, Subin
Browse files

ErrorPage 최종 완성

parent 6b50e528
import { Link } from "react-router-dom";
const ErrorPage = () => {
return (
<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>
<Link to="/login" style={{ color: "crimson" }}>Back to login</Link>
</div>
)
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment