import React from "react"; import { BlockLink, Layout } from "../components"; import { BlockBody, BlockHeader } from "../styles"; 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";