export interface HeadingDescription { id: number; heading: string; description: string; order: number; } export interface HCD extends HeadingDescription { // H: Heading, C: CTA, D: Description cta: string; } export interface TDI { // T: Title, D: Description, I: Images title: string; description: string; images: LogoMultipleImageDataInterface; id: number; } export interface LogoImageDataInterface { data: { attributes: { url: string; alternativeText: string; width?: number; height?: number } }; } export interface LogoMultipleImageDataInterface { data: { attributes: { url: string; alternativeText: string; width?: number; height?: number } }[]; } export interface DataServicesPageAPIResponseInterface { heroSection: HeroSectionInterface; ourServices: OurServicesInterface; cta1: CtaInterface; serviceAccordion: ServiceAccordionInterface; clients: ClientsInterface; successStory: SuccessStoryInterface; businessNeed: BusinessNeedsInterface; technologies: TechnologiesInterface; cta2: CtaInterface; advanceService: AdvanceServicesInterface; advanceTech: AdvanceTechInterface; industry: IndustryInterface; customService: CustomServiceInterface; developmentProcess: DevelopmentProcessInterface; cta3: CtaInterface; whyChooseUs: WhyChooseUsInterface; testimonials: TestimonialInterface; testimonials2: Testimonial2Interface; faq: FaqInterface; popUp: PopUpInterface; microHeaders: MicroHeadersInterface; ourSolutions: OurSolutionInterface; customDev: CustomDevInterface; } interface ListItemsInterface { icon: LogoImageDataInterface; image: LogoImageDataInterface; title: string; description: string; } export interface HeroSectionInterface extends HCD { image: LogoImageDataInterface; } export interface MicroHeadersInterface { data: MicroHeader[]; } export interface MicroHeader { id: number; attributes: { item: string; find_id: string; idCheck: string; }; } export interface CtaInterface { order: number; title: string; cta: string; bgImage: LogoImageDataInterface; } export interface PopUpInterface extends HeadingDescription { btnText: string; icon: LogoImageDataInterface; } export interface FaqInterface extends HeadingDescription { faqs: { answer: string; question: string; }[]; } export interface OurServicesInterface extends HCD { cards: TDI[]; } export interface BusinessNeedsInterface extends HCD { slider: TDI[]; ctaTitle: string; } export interface ServiceAccordionInterface extends HeadingDescription { accordion: { heading: string; description: string; icon: LogoImageDataInterface; }[]; } export interface CustomServiceInterface extends HCD { listItems: ListItemsInterface[]; } export interface ClientsInterface extends HeadingDescription { brandLogos: { data: { attributes: { brands: { name?: string; mobile?: boolean; logo: LogoImageDataInterface; }[]; }; }; }; } export interface SuccessStoryInterface extends HCD { caseStudies: { data: { id: number; attributes: { pageUrl: string; shortDetails: string; projectName: string; category: string; industry: string; cardImage: LogoImageDataInterface; }; }[]; }; } export interface TechnologiesInterface extends HeadingDescription { tools: ToolInterface[]; } export interface ToolInterface { id: number; title: string; technologies: { data: { attributes: { name: string; icon: LogoImageDataInterface; }; }[]; }; } export interface AdvanceTechInterface extends HeadingDescription { slider: TDI[]; } export interface AdvanceServicesInterface extends AdvanceTechInterface {} export interface DevelopmentProcessInterface extends HeadingDescription { cards: { title: string; description: string; images: LogoMultipleImageDataInterface; }[]; } export interface WhyChooseUsInterface extends HCD { cards: TDI[]; } export interface Testimonial2Interface { title: string; testimonials: { data: { attributes: { name: string; designation: string; message: string; image: LogoImageDataInterface }; }[]; }; order: number; } export interface TestimonialInterface { id: number; title: string; clientName: string; clientDesignation: string; testimonials: { data: { id: number; attributes: { name: string; designation: string; message: string; rating: number; clientImage: LogoImageDataInterface; }; }[]; }; videoTestimonial: LogoImageDataInterface; order: number; } export interface OurSolutionInterface extends HeadingDescription { cards: TDI[]; } export interface CustomDevInterface extends HeadingDescription { image: LogoImageDataInterface; } export interface IndustryInterface extends AdvanceTechInterface {}