import React from 'react';
import Layout from 'components/layout/Layout';

export default function Custom404() {
  return (
    <Layout>
      <div className="row justify-content-center">
        <h1>oops! page not found</h1>
      </div>
    </Layout>
  );
}