import React, { ReactElement } from 'react' import { Link, PageProps } from 'gatsby' import Page from '../components/templates/Page' import { hal9000, wrapper, title, text } from './404.module.css' const page = { frontmatter: { title: '404 - Not Found' } } const NotFound = (props: PageProps): ReactElement => (

{"I'm sorry Dave"}

{' '}

{"I'm afraid I can't do that"}

Back to homepage
) export default NotFound