mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-01-15 00:01:31 +01:00
22 lines
570 B
JavaScript
22 lines
570 B
JavaScript
// @flow strict
|
|
import React from 'react';
|
|
import Sidebar from '../components/Sidebar';
|
|
import Layout from '../components/Layout';
|
|
import Page from '../components/Page';
|
|
import { useSiteMetadata } from '../hooks';
|
|
|
|
const NotFoundTemplate = () => {
|
|
const { title, subtitle } = useSiteMetadata();
|
|
|
|
return (
|
|
<Layout title={`Not Found - ${title}`} description={subtitle}>
|
|
<Sidebar />
|
|
<Page title="NOT FOUND">
|
|
<p>You just hit a route that doesn't exist... the sadness.</p>
|
|
</Page>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default NotFoundTemplate;
|