-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathNotFound.js
More file actions
22 lines (20 loc) · 745 Bytes
/
NotFound.js
File metadata and controls
22 lines (20 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import React from "react";
import { Link } from "react-router-dom";
import { Button } from "@material-ui/core";
const NotFound = () => {
return (
<div className='background-grad w-100 overflow-hidden' style={{ height: 'calc(100vh - 64px)' }}>
<div className="container mt-3">
<div className="row">
<di className='col-md-6'>
<h1>404.</h1>
<h3>This page does not exists</h3>
<p>Looks like you're lost! please go to the homepage.</p>
<Link to='/'><Button>Home</Button></Link>
</di>
</div>
</div>
</div>
)
}
export default NotFound