Files
web/types/enums/contentPage.ts
2024-09-25 10:45:23 +02:00

19 lines
610 B
TypeScript

export namespace ContentPageEnum {
export namespace ContentStack {
export const enum blocks {
CardsGrid = "ContentPageBlocksCardsGrid",
Content = "ContentPageBlocksContent",
DynamicContent = "ContentPageBlocksDynamicContent",
Shortcuts = "ContentPageBlocksShortcuts",
TextCols = "ContentPageBlocksTextCols",
UspGrid = "ContentPageBlocksUspGrid",
}
export const enum sidebar {
Content = "ContentPageSidebarContent",
DynamicContent = "ContentPageSidebarDynamicContent",
JoinLoyaltyContact = "ContentPageSidebarJoinLoyaltyContact",
}
}
}