﻿// App entry point for all text content pages — pageId set via window.__PAGE_ID__
function App() {
  if (typeof initScrollReveal !== 'undefined') initScrollReveal();
  return (
    <>
      <Nav />
      <ContentRenderer pageId={window.__PAGE_ID__} />
      <Footer />
    </>
  );
}
ReactDOM.createRoot(document.getElementById('app')).render(<App />);
