mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-15 04:30:16 +02:00
dark mode + .... some form of toggle :)
This commit is contained in:
@@ -4,6 +4,7 @@ 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();
|
||||
@@ -11,8 +12,12 @@ const NotFoundTemplate: React.FC = () => {
|
||||
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 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>
|
||||
);
|
||||
|
Reference in New Issue
Block a user