Skip to content
Permalink
Newer
Older
100644 19 lines (16 sloc) 496 Bytes
1
import Layout from '@components/Layout';
2
import Header404 from '@components/Header404';
3
import { SITE_DOMAIN } from '@util/constants';
4
5
const FourOhFour = () => {
7
title: 'Oops! You found a missing page! - Jamstack Explorers',
8
description: 'Oops! It looks like this page is lost in space somewhere!',
9
url: `${SITE_DOMAIN}/404`,
10
};
11
13
<Layout navtheme="dark" pageMeta={pageMeta}>
14
<Header404 />
15
</Layout>
16
);
17
};
18
19
export default FourOhFour;