/* ============================================================
   content.jsx — base/seed registry

   There are no hardcoded template pages anymore. All page and devlog
   content lives in the store (Azure Cosmos DB via the /api in cloud mode,
   localStorage otherwise) and is assembled by store.jsx → rebuildLive().

   This file only needs to declare the EMPTY base globals that store.jsx
   reads before it rebuilds the live NAV / PAGES / DEVLOG.
   ============================================================ */
window.BASE_NAV = [];
window.BASE_DEVLOG = [];
window.BASE_PAGE_ICON = {};

Object.assign(window, {
  NAV: [], PAGES: [], PAGE_BY_ID: {}, PAGE_ICON: {},
  DEVLOG: [], DEVLOG_BY_ID: {},
});
