"use client"; import { signIn, signOut } from "next-auth/react"; export function SignInButton() { return ( signIn("huggingface", { callbackUrl: "/" })} className="rounded-full border border-solid border-transparent transition-colors flex items-center justify-center bg-foreground text-background gap-2 hover:bg-[#383838] dark:hover:bg-[#ccc] font-poppins font-medium text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5" > Sign in with Hugging Face ); } export function SignOutButton() { return ( signOut({ callbackUrl: "/" })} className="rounded-full border border-solid border-black/[.08] dark:border-white/[.145] transition-colors flex items-center justify-center hover:bg-[#f2f2f2] dark:hover:bg-[#1a1a1a] hover:border-transparent font-poppins font-medium text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5" > Sign out ); }