"use client"; import { signIn } from "next-auth/react"; import Link from "next/link"; import { useSearchParams } from "next/navigation"; import { Suspense, useState } from "react"; function authErrorMessage(code: string | null): string | null { if (!code) return null; if (code === "Callback") { return (
{subtitle}
Local only: sign in without Google as
{process.env.NEXT_PUBLIC_DEV_LOCAL_AUTH_EMAIL}