source: jobvista-frontend/src/views/static/ErrorPage.js@ b248810

main
Last change on this file since b248810 was b248810, checked in by 223021 <daniel.ilievski.2@…>, 3 weeks ago

Added no access page for new recruiters and admin panel for granting access

  • Property mode set to 100644
File size: 730 bytes
Line 
1import "./NoAccess.css"
2export const ErrorPage = () => {
3 return (
4 <div className="d-flex align-items-center justify-content-center vh-100 landing-page">
5 <div className="text-center">
6 <h1 className="display-1 fw-bold">404</h1>
7 <p className="fs-3"><span className="text-danger">Opps!</span> Page not found.</p>
8 <p className="lead">
9 The page you’re looking for is not available or doesn’t exist.
10 </p>
11 {/*{user && <Link to="/dashboard" className="go-back-btn">Go back</Link>}*/}
12 {/*{!user && <Link to="/" className="go-back-btn">Go back</Link>}*/}
13
14 </div>
15 </div>
16 )
17}
Note: See TracBrowser for help on using the repository browser.