'use client'; import posthog from 'posthog-js'; import { PostHogProvider } from 'posthog-js/react'; if (typeof window !== 'undefined' && process.env.NEXT_PUBLIC_POSTHOG_KEY) { posthog.init(process.env.NEXT_PUBLIC_POSTHOG_KEY, { api_host: process.env.NEXT_PUBLIC_POSTHOG_HOST || 'https://app.posthog.com', person_profiles: 'identified_only', }); } export function CSPostHogProvider({ children }: { children: React.ReactNode }) { return {children}; }