import * as React from "react"; import BlockLink from "../components/BlockLink"; import { BlockBody, BlockHeader, Content } from "../styles"; // markup const NotFoundPage = (): React.ReactElement => { return (
Not found Sorry{" "} 😔 {" "} we couldn't find what you were looking for. Home
); }; export default NotFoundPage; export { Head } from "../components/SEO";