/* CX Defense — Insights index. Pulls real articles from window.ARTICLES (defined in articles.jsx, loaded before this file). */ const { Nav, Rule, PageHero, CTA, Footer } = window; function App() { const ARTICLES = window.ARTICLES; const ORDER = window.ARTICLE_ORDER; const featId = ORDER[0]; const feat = ARTICLES[featId]; const rest = ORDER.slice(1); return (
); } ReactDOM.createRoot(document.getElementById('root')).render();