"use client"; import { useState } from "react"; import { toast } from "sonner"; import { GitHubIcon } from "@/components/icons"; import { Button } from "@/components/ui/button"; import { Spinner } from "@/components/ui/spinner"; import { signIn } from "@/lib/auth-client"; const SignIn = ({ callbackPath }: { callbackPath?: string }) => { const [isLoading, setIsLoading] = useState(false); const handleSignIn = async () => { setIsLoading(true); try { await signIn.social({ provider: "github", callbackURL: `${process.env.NEXT_PUBLIC_BASE_URL}${callbackPath ? callbackPath : "/"}`, }); } catch (error) { console.error("Error signing in:", error); toast.error("There was a problem signing in."); setIsLoading(false); } }; return ( ); }; export { SignIn };