import { Analytics } from "@vercel/analytics/react"; import { Component, ReactNode } from "react"; import { logger } from "@/lib/logger"; class AnalyticsErrorBoundary extends Component< { children: ReactNode }, { hasError: boolean } > { constructor(props: { children: ReactNode }) { super(props); this.state = { hasError: false }; } static getDerivedStateFromError() { return { hasError: true }; } componentDidCatch(error: Error) { // Silently fail - analytics should never break the app logger.info('Analytics failed to load, continuing without analytics', { error: error.message }); } render() { if (this.state.hasError) { return null; } return this.props.children; } } export function AnalyticsWrapper() { return ( ); }