"use client"; import { clientEnv } from "@/env/client"; import { ThemeProvider } from "next-themes"; import posthog from 'posthog-js'; import { PostHogProvider } from 'posthog-js/react'; import { ReactNode } from "react"; if (typeof window !== 'undefined') { posthog.init(clientEnv.NEXT_PUBLIC_POSTHOG_KEY!, { api_host: clientEnv.NEXT_PUBLIC_POSTHOG_HOST, person_profiles: 'always', }) } export function Providers({ children }: { children: ReactNode }) { return ( {children} ) }