feat: Add FAQ content management page with functionality to manage categories and items.
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -80,4 +80,7 @@ export type {
|
||||
AboutTeamMember,
|
||||
AboutTeamContent,
|
||||
AboutCtaContent,
|
||||
FaqCategoryItem,
|
||||
FaqItem,
|
||||
FaqContent,
|
||||
} from './cms.service';
|
||||
|
||||
Reference in New Issue
Block a user