added Login page

This commit is contained in:
PxlLoewe
2025-01-26 22:34:49 +01:00
parent 58277ba819
commit e30c28a66f
4 changed files with 86 additions and 6 deletions

View File

@@ -1,13 +1,12 @@
import { Provider } from 'next-auth/providers/index';
import { getProviders } from 'next-auth/react';
import { Login } from './_components/Login';
export default async () => {
const providers = await getProviders();
console.log(providers);
return (
<div>
<div className="mx-auto max-w-sm ">
<h1 className="text-5xl">Login</h1>
<Login />
</div>
);
};