aboutsummaryrefslogtreecommitdiff
path: root/web/src/app/components/sign-in.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/app/components/sign-in.jsx')
-rw-r--r--web/src/app/components/sign-in.jsx14
1 files changed, 0 insertions, 14 deletions
diff --git a/web/src/app/components/sign-in.jsx b/web/src/app/components/sign-in.jsx
deleted file mode 100644
index 3d7142f..0000000
--- a/web/src/app/components/sign-in.jsx
+++ /dev/null
@@ -1,14 +0,0 @@
-import { signIn } from "@/lib/auth"
-
-export default function SignIn() {
- return (
- <form
- action={async () => {
- "use server"
- await signIn("discord")
- }}
- >
- <button type="submit" className="bg-discord-blurple p-3 rounded-md hover:bg-discord-blurple">Login with Discord</button>
- </form>
- )
-}