// Client block registry entrypoint. Importing this module registers every // browser-side block definition (renderer + editor + palette entry) exactly // once, then re-exports the registry API. The page builder and the public page // renderer should import from HERE, not ./registry, so the definitions are // loaded before anything reads the registry. // // Wave 1 definitions are registered below as each block is built (spec build // order step 3), one import per block. export * from './registry' // ── Wave 1 block definitions (self-register on import) ───────────────── import './types/heading.jsx' import './types/richText.jsx' import './types/image.jsx' import './types/twoColumn.jsx' import './types/cta.jsx' import './types/divider.jsx' import './types/quote.jsx'