feat: page login avec gestion erreurs et rate limiting

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-07 00:20:36 +02:00
parent 44b3b4dd8d
commit 8d06706a24
3 changed files with 107 additions and 1 deletions
@@ -0,0 +1,6 @@
'use client'
import { SessionProvider as NextAuthSessionProvider } from 'next-auth/react'
export function SessionProvider({ children }: { children: React.ReactNode }) {
return <NextAuthSessionProvider>{children}</NextAuthSessionProvider>
}