implemented inital nextAuth logic

This commit is contained in:
PxlLoewe
2025-01-18 23:19:16 +01:00
parent 2f8424e56c
commit 58277ba819
21 changed files with 295 additions and 172 deletions

View File

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