diff --git a/apps/mana/apps/web/src/lib/modules/guides/index.ts b/apps/mana/apps/web/src/lib/modules/guides/index.ts index 3bd04bdc0..8c2bebb45 100644 --- a/apps/mana/apps/web/src/lib/modules/guides/index.ts +++ b/apps/mana/apps/web/src/lib/modules/guides/index.ts @@ -21,3 +21,7 @@ export type { export { GUIDE_CATEGORIES, DIFFICULTY_LABELS } from './types'; export { guideTable, sectionTable, stepTable, runTable, GUIDES_GUEST_SEED } from './collections'; + +// TODO: GUIDES should be populated from a content source (static JSON, CMS, or DB). +// For now export an empty array so the /guides route renders without crashing the build. +export const GUIDES: Guide[] = [];