import "./instrument"; // Sentry must init before any other imports import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import { reactErrorHandler } from '@sentry/react' import { HelmetProvider } from 'react-helmet-async' import { Toaster } from 'sonner' import './index.css' import App from './App' createRoot(document.getElementById('root')!, { onUncaughtError: reactErrorHandler(), onCaughtError: reactErrorHandler(), onRecoverableError: reactErrorHandler(), }).render( {/* Toast notification system - theme syncs automatically via CSS custom properties */} , )