interface LogoImageDataInterface { data: { attributes: { url: string; alternativeText: string; width?: number; height?: number } }; } export interface HireTeamHeroInterface { title: string; subTitle: string; heroCard: { work: string; workValue: string; icon: LogoImageDataInterface; }[]; } export interface TechnologyStackInterface { title: string; image: { data: { attributes: { url: string; }; }; }; } export interface ProcessInterface { title: string; details: string; label: string; } export interface HireDeveloperInterface { title: string; companyName: string; description: string; } export interface DevelopmentServicesInterface { title: string; details: string; serviceCard: { title: string; details: string; icon: LogoImageDataInterface; }[]; } export interface HiringModelsInterface { title: string; details: string; modelsCard: { title: string; description: string }[]; } export interface FrontendReactPageApiInterface { hero: HireTeamHeroInterface; developer: HireDeveloperInterface; developmentServices: DevelopmentServicesInterface; technologyStack: TechnologyStackInterface[]; processData: ProcessInterface[]; hiringModels: HiringModelsInterface; }