mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-01-30 23:33:15 +01:00
27 lines
752 B
TypeScript
27 lines
752 B
TypeScript
import React from "react";
|
|
|
|
import { Layout } from "@/components/Layout";
|
|
import { Page } from "@/components/Page";
|
|
import { Sidebar } from "@/components/Sidebar";
|
|
import { useSiteMetadata } from "@/hooks";
|
|
import { Link } from "gatsby";
|
|
|
|
const NotFoundTemplate: React.FC = () => {
|
|
const { title, subtitle } = useSiteMetadata();
|
|
|
|
return (
|
|
<Layout title={`Not Found - ${title}`} description={subtitle}>
|
|
<Sidebar />
|
|
<Page title="Oh no! page be lost">
|
|
<p>
|
|
You've stumbled upon a link that doesn't work anymore {":("}
|
|
<br />
|
|
Use the menu to navigate around or click <Link to="/">here</Link> to go to the main page.
|
|
</p>
|
|
</Page>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default NotFoundTemplate;
|