Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Co-authored-by: Scott Mathson <25587929+scottmathson@users.noreply.github.com>
4 contributors

Users who have contributed to this file

@sdras @bencodezen @cassidoo @scottmathson
import Layout from '@components/Layout';
import Header404 from '@components/Header404';
import { SITE_DOMAIN } from '@util/constants';
const FourOhFour = () => {
const pageMeta = {
title: 'Oops! You found a missing page! - Jamstack Explorers',
description: 'Oops! It looks like this page is lost in space somewhere!',
url: `${SITE_DOMAIN}/404`,
};
return (
<Layout navtheme="dark" pageMeta={pageMeta}>
<Header404 />
</Layout>
);
};
export default FourOhFour;