We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 813a836 commit f6206d8Copy full SHA for f6206d8
1 file changed
src/templates/not_found/index.jsx
@@ -1,8 +1,14 @@
1
import React from 'react';
2
+import Layout from '../../components/Layout';
3
4
const NotFound = () => {
5
return (
- <h1>Page not found.</h1>
6
+ <Layout title="Page not found">
7
+ <div class="dc-page container">
8
+ <h1>Page not found.</h1>
9
+ <p>We're sorry, we can't find the page you're looking for.</p>
10
+ </div>
11
+ </Layout>
12
);
13
}
14
0 commit comments