Permalink
Newer
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';
6
const pageMeta = {
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}>
16
);
17
};
18
19
export default FourOhFour;