convexsol_stage/constants/developmentFeature.ts
2025-12-02 11:02:00 +05:30

30 lines
599 B
TypeScript

import { Notes } from "@/interfaces/clientTestimonial"
export interface DevelopmentFeatureInterface {
extractClass?: string;
props: PropsContent;
}
export interface PropsContent {
header: Header;
notes: Notes[];
footer: Footer;
}
export interface Header {
title: string;
titleColor: string;
content: string;
background:string|undefined|null;
backgroundImage:any;
}
export interface Footer{
id:number,
contentBody:string | undefined | null,
buttonText: string|undefined|null,
backgroundImage: any,
background: string|null|undefined,
}