Loading docs page
What belongs in runtime config and how feature toggles are wired.
src/config/runtime.js is the place for serializable runtime decisions such as:
Keep it data-only so it stays safe to read in routing, metadata, and server code.
src/config/runtime.js should not become a registry of React nodes, route handlers, or
compatibility wrappers. Keep it declarative.
If you are changing homepage copy or section structure, update src/config/landing-page.js,
src/config/foundation.js, or src/docs/content/*.
If you are changing navigation, update src/config/navigation.js or src/config/docs-nav.js.
If you are changing how something renders, edit the relevant shared component instead of pushing UI concerns into runtime config.