forked from hasura/auth-ui-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotFound.js
34 lines (33 loc) · 1.06 KB
/
NotFound.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import React, { Component } from 'react';
import { Helmet } from 'react-helmet';
import { Link } from 'react-router-dom';
import './style.css';
class NotFound extends Component {
render() {
return (
<div className="viewcontainer">
<Helmet title="404 - Page Not Found" />
<div className={'container centerContent'}>
<div className={'row message'}>
<div className="col-md-8 col-sm-12 col-xs-12">
<h1>Oops! Are you lost?</h1>
<div className="col-sm-12 col-xs-12 hidden-md hidden-lg">
<br />
</div>
<p>
<i className="fa fa-quote-left" aria-hidden="true" /> Go
to
<Link to="/ui">Login</Link>. <i
className="fa fa-quote-right"
aria-hidden="true"
/>
</p>
</div>
<div className="col-md-4 col-sm-12 col-xs-12 hidden-sm hidden-xs" />
</div>
</div>
</div>
);
}
}
export default NotFound;