import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' // Self-hosted so the landing stays self-contained and makes no third-party // request. Subsets are gated by unicode-range, so only latin, latin-ext and // cyrillic are actually downloaded for this page. import '@fontsource-variable/inter' import App from './App' import './index.css' const container = document.getElementById('root') if (!container) throw new Error('#root is missing from index.html') createRoot(container).render( , )