tenantpilot/app/(auth)/sign-in/page.tsx
2025-11-18 23:24:41 +01:00

24 lines
613 B
TypeScript

"use client";
import { signIn } from "next-auth/react";
const Page = () => {
return (
<main className="bg-popover max-w-lg mx-auto my-4 rounded-lg p-10">
<h1 className="text-2xl font-bold text-center">
Sign in to your account
</h1>
<div className="mt-4">
<button
onClick={() => signIn(undefined, { callbackUrl: "/dashboard" })}
className="w-full bg-primary text-primary-foreground text-center hover:opacity-90 font-medium px-4 py-2 rounded-lg block"
>
Sign In
</button>
</div>
</main>
);
};
export default Page;