import React from 'react';
import Layout from 'components/Layout';
export default function Custom404() {
return (
<Layout>
<h1>oops! not found</h1>
</Layout>
);
}