Add mainlayout to not found page

This commit is contained in:
Kurt Hutten
2020-11-06 17:27:49 +11:00
parent 07296d0a23
commit c0cd79f48b

View File

@@ -1,5 +1,7 @@
import MainLayout from 'src/layouts/MainLayout'
export default () => ( export default () => (
<main> <MainLayout>
<style <style
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -35,10 +37,10 @@ export default () => (
`, `,
}} }}
/> />
<section> <section className="">
<h1> <h1>
<span>404 Page Not Found</span> <span className="font-ropa-sans">404 Page Not Found</span>
</h1> </h1>
</section> </section>
</main> </MainLayout>
) )