Permalink
19 lines (16 sloc)
496 Bytes
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?
explorers/src/pages/404.js /
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Scott Mathson <25587929+scottmathson@users.noreply.github.com>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; |