// ============================================================ // MOUNT // ============================================================ function mount(id, Comp) { const el = document.getElementById(id); if (!el) return; ReactDOM.createRoot(el).render(); } mount("hero-root", Hero); mount("bots-root", Bots); mount("cursos-root", Cursos); mount("cohorte-root", Cohorte); mount("bni-root", BNI); mount("cta-root", CTA); mount("floats-root", FloatingAssistants);