Upgraded to Next Auth v5

This commit is contained in:
Tom
2024-01-02 07:26:20 +00:00
parent a3352af981
commit 4505654a05
24 changed files with 283 additions and 227 deletions

9
app/auth/layout.tsx Normal file
View File

@@ -0,0 +1,9 @@
const AuthLayout = ({ children } : { children: React.ReactNode }) => {
return (
<div className="h-full flex items-center justify-center bg-black">
{children}
</div>
);
}
export default AuthLayout;

9
app/auth/login/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { LoginForm } from "@/components/auth/login-form";
const LoginPage = () => {
return (
<LoginForm />
);
}
export default LoginPage;