forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
31 lines (30 loc) · 1.05 KB
/
Copy pathindex.js
File metadata and controls
31 lines (30 loc) · 1.05 KB
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
import React from 'react';
import { Button, Container, Row, Col } from 'reactstrap';
import { Link } from 'react-router';
import Helmet from 'react-helmet';
export default () => {
return (
<div>
<Helmet title="404 Page Not Found" />
<section className="jumbotron text-center mb-3">
<Container>
<Row>
<Col>
<p className="lead">
<img src="/assets/logo.png" alt="" width="150px" />
</p>
<h1 className="jumbotron-heading display-4">404 - Not Found</h1>
<p className="lead">
Can't find what you're looking for? <a href="https://github.com/reactstrap/reactstrap/issues/new">Open</a> up an issue.
</p>
<p>
<Button outline color="danger" className="mr-1" tag={Link} to="/">Get Started</Button>
<Button color="danger" tag={Link} to="/components">View Components</Button>
</p>
</Col>
</Row>
</Container>
</section>
</div>
);
};