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,23 +1,17 @@
import React from 'react';
import Layout from 'components/layout';
import Link from 'next/link';
import Layout from 'components/Layout';
import Login from 'components/Login';
export default function Home() {
return (
<Layout>
Hello.
<br />
<Link href="/?q=abc">
<a>abc</a>
</Link>
<br />
<Link href="/?q=123">
<a>123</a>
</Link>
<br />
<button id="primary-button" className="otherClass umami--click--primary-button" type="button">
Button
</button>
<Login />
<p>
<Link href="/test">
<a>Test page 🡒</a>
</Link>
</p>
</Layout>
);
}