aboutsummaryrefslogtreecommitdiffstats
path: root/web/components/auth/login.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/components/auth/login.tsx')
-rw-r--r--web/components/auth/login.tsx17
1 files changed, 0 insertions, 17 deletions
diff --git a/web/components/auth/login.tsx b/web/components/auth/login.tsx
deleted file mode 100644
index 4cd55546..00000000
--- a/web/components/auth/login.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-"use client";
-import { signIn } from "next-auth/react";
-
-export const LoginButton = () => {
- return (
- <button
- className="btn btn-primary"
- onClick={() =>
- signIn(undefined, {
- callbackUrl: "/",
- })
- }
- >
- Sign in
- </button>
- );
-};