© 2026 Hedgehog Software, LLC
// /app/(auth)/sign-in/page.tsx export default async function SignInPage() { const session = await auth.api.getSession({ headers: await headers(), }); if (session) { return redirect("/dashboard"); }