import { createRoot } from "react-dom/client"; import App from "./App.tsx"; import "./index.css"; import { initAnalytics } from "./lib/analytics"; // Initialize GDPR-compliant Google Tags and Analytics Consent Mode v2 initAnalytics(); createRoot(document.getElementById("root")!).render();