feat: Implement user authentication using NextAuth with social and credentials providers.

This commit is contained in:
pradeepkumar
2025-12-20 19:22:35 +05:30
parent b1cd8376ac
commit 218337666e
8 changed files with 452 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
"use client";
import { SessionProvider as NextAuthSessionProvider } from "next-auth/react";
export function SessionProvider({ children }: { children: React.ReactNode }) {
return <NextAuthSessionProvider>{children}</NextAuthSessionProvider>;
}