"use client"; import { signIn } from "next-auth/react"; type Props = { large?: boolean; }; export function SignInButton({ large }: Props) { return ( ); }