import {StrictMode} from 'react'; import {createRoot} from 'react-dom/client'; import App from './App.tsx'; import ErrorBoundary from './components/ErrorBoundary.tsx'; import './index.css'; // Explicitly set the DOM window/tab title on boot to bypass any stale static caches document.title = "AllInOneApp | ROOTS HTI WORLDWIDE"; createRoot(document.getElementById('root')!).render( , );