Upgraded to Next Auth v5
This commit is contained in:
9
app/auth/layout.tsx
Normal file
9
app/auth/layout.tsx
Normal 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
9
app/auth/login/page.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { LoginForm } from "@/components/auth/login-form";
|
||||
|
||||
const LoginPage = () => {
|
||||
return (
|
||||
<LoginForm />
|
||||
);
|
||||
}
|
||||
|
||||
export default LoginPage;
|
||||
Reference in New Issue
Block a user