"use client"; import { signIn } from "next-auth/react"; export default function SignIn() { const handleSignIn = () => { signIn("discord", { callbackUrl: "/admin" }); }; return (

Sign In

Please sign in to access the features of our Discord bot.

); }