import Layout from '../components/Layout' import SEO from '../components/SEO' import Doggy from '../components/Doggy' export default function FourOhFour() { return (

404: Not found 😢

Here’s a doggy 😀

) } export function getStaticProps() { return { props: {} } }