Accounts and login.

This commit is contained in:
Mike Cao 2020-07-23 19:56:55 -07:00
parent f3f0ad15f2
commit 49a55b40b4
22 changed files with 347 additions and 172 deletions

View file

@ -1,10 +1,10 @@
import React from 'react';
import Layout from 'components/layout';
import Layout from 'components/Layout';
export default function Custom404() {
return (
<Layout title="404 - Page Not Found">
<h1>oops</h1>
<Layout>
<h1>oops! not found</h1>
</Layout>
);
}