-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path404.js
More file actions
24 lines (22 loc) · 666 Bytes
/
404.js
File metadata and controls
24 lines (22 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import React from 'react'
import Layout from '../components/Layout'
class NotFoundPage extends React.Component {
render() {
return (
<Layout location={this.props.location}>
<h1>Not Found</h1>
<p>I haven’t written this post yet. Will you help me write it?</p>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/6IJB0aD8gSA"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowFullscreen
/>
<p>Too doo doo doo doo doo doo doo</p>
</Layout>
)
}
}
export default NotFoundPage