import { createRoot } from "react-dom/client"; import App from "./App.tsx"; import "./index.css"; import "./styles/emoji-animations.css"; import "./styles/name-effects.css"; // Service Worker registration is now handled by usePwaServiceWorker hook // after user interaction (play radio, click install, etc.) // This follows Chrome's best practices for PWA installability. createRoot(document.getElementById("root")!).render();