Added a base layout with a nav bar

This commit is contained in:
2020-10-26 12:30:21 +00:00
parent eef551bf7a
commit a8f5fe8db4
11 changed files with 1002 additions and 137 deletions

View File

@@ -0,0 +1,17 @@
import Link from "next/link";
const AuthRequired = (props) => {
return (
<>
<p>Hi there!</p>
<p>
You are not signed in.{" "}
<Link href={"/auth"}>
<a>Sign in</a>
</Link>
</p>
</>
);
};
export default AuthRequired;