import * as React from "react" import { Link, type HeadFC, type PageProps } from "gatsby" import logo from "../images/logo.svg"; import PageLayout, { generateHeader } from "../layout/page"; import styled from "styled-components"; const CenterImage = styled.img` display: block; margin: 0 auto; margin-top: 50px; width: 70%; height: auto; max-width: 600px; ` const NotFound: React.FC = () => { return (

Try going back to the home page.

) } export default NotFound export const Head: HeadFC = generateHeader("Not Found", "Page could not be found.");