main
Last change
on this file was b248810, checked in by 223021 <daniel.ilievski.2@…>, 6 months ago |
Added no access page for new recruiters and admin panel for granting access
|
-
Property mode
set to
100644
|
File size:
730 bytes
|
Line | |
---|
1 | import "./NoAccess.css"
|
---|
2 | export 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.