feat(cms): add static pages module

This commit is contained in:
sdarbinyan
2026-07-10 13:52:01 +04:00
parent e2c8747fcc
commit 7d6c09a346
25 changed files with 890 additions and 159 deletions

View File

@@ -405,6 +405,7 @@ export interface Translations {
footer: string;
homepage: string;
widgets: string;
staticPages: string;
marketplaceFeatures: string;
preview: string;
brandName: string;
@@ -441,7 +442,19 @@ export interface Translations {
copyright: string;
paymentIcons: string;
socialLinks: string;
staticPages: string;
createPage: string;
deletePage: string;
pageId: string;
slug: string;
iconLabel: string;
showInFooter: string;
showInHeader: string;
showInSitemap: string;
requiresAuthentication: string;
footerGroup: string;
orderLabel: string;
translationTitle: string;
htmlPreview: string;
visible: string;
layoutLabel: string;
columns: string;
@@ -469,6 +482,12 @@ export interface Translations {
importError: string;
featureFlags: string;
};
staticPages: {
notFound: string;
backHome: string;
duplicateSlug: string;
emptyTitle: string;
};
widgets: {
unavailable: string;
};