import { signIn } from '@/auth'; export function SignIn() { return (
{ 'use server'; await signIn('github', { redirectTo: '/dashboard' }); }} >
); }