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 (

You've stumbled upon a link that doesn't work anymore {":("}
Use the menu to navigate around or click here to go to the main page.

); }; export default NotFoundTemplate;