'use client'; import type { ReactNode } from 'react'; import { env } from '@/env'; import { ConvexAuthNextjsProvider } from '@convex-dev/auth/nextjs'; import { ConvexReactClient } from 'convex/react'; const convex = new ConvexReactClient(env.NEXT_PUBLIC_CONVEX_URL); export const ConvexClientProvider = ({ children }: { children: ReactNode }) => ( {children} );