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, }