feat: Add FAQ content management page with functionality to manage categories and items.

This commit is contained in:
pradeepkumar
2026-02-24 03:53:56 +05:30
parent 9bc70078c2
commit a264c24f26
3 changed files with 173 additions and 5 deletions

View File

@@ -106,6 +106,27 @@ export interface AboutCtaContent {
buttonText: string;
}
export interface FaqCategoryItem {
id: string;
label: string;
}
export interface FaqItem {
id: number;
icon: string;
question: string;
answer: string;
category: string;
}
export interface FaqContent {
pageTitle: string;
categories: FaqCategoryItem[];
faqs: FaqItem[];
supportTitle: string;
supportDescription: string;
}
export interface CmsContentRecord {
id: string;
pageSlug: string;

View File

@@ -80,4 +80,7 @@ export type {
AboutTeamMember,
AboutTeamContent,
AboutCtaContent,
FaqCategoryItem,
FaqItem,
FaqContent,
} from './cms.service';