diff options
| author | Sam Nystrom <sam@samnystrom.dev> | 2024-03-12 14:52:25 +0000 |
|---|---|---|
| committer | Sam Nystrom <sam@samnystrom.dev> | 2024-03-12 17:34:56 -0400 |
| commit | a9aa246f58dcb2664c4e7a1bd98e69c19e7d7000 (patch) | |
| tree | 2795ec23ec748024dd863215a9735cb8c3825579 /src/pages/Home.tsx | |
| parent | 367fe51e7e1c55e39299e2e667ca4f399a474019 (diff) | |
Add rudimentary backend and auth
Diffstat (limited to 'src/pages/Home.tsx')
| -rw-r--r-- | src/pages/Home.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx new file mode 100644 index 0000000..7762636 --- /dev/null +++ b/src/pages/Home.tsx @@ -0,0 +1,8 @@ +export const Home = () => { + return ( + <header> + <a href="/signup">Sign Up</a> + <a href="/login">Log In</a> + </header> + ); +};
\ No newline at end of file |
