"use client"; import { SessionProvider } from "next-auth/react"; import { authOptions } from "@/lib/auth"; interface ProvidersProps { children: React.ReactNode; } export function Providers({ children }: ProvidersProps) { return ( {children} ); }