export interface ProcessStep {
  id: number;
  title: string;
  icon: string;
  iconAlt: string;
  delay: number;
}

export interface WorkingProcessData {
  subtitle: string;
  title: string;
  description: string;
  steps: ProcessStep[];
}

export const workingProcessData: WorkingProcessData = {
  subtitle: "Working process",
  title: "How our technology works",
  description: "We make it easy to turn information into action. Our tools integrate seamlessly with your existing systems, streamline decision-making",
  steps: [
    {
      id: 1,
      title: "AI and Machine Learning",
      icon: "/assets/images/icon/process1-1.svg",
      iconAlt: "Icon for AI and Machine Learning",
      delay: 300
    },
    {
      id: 2,
      title: "Cloud computing",
      icon: "/assets/images/icon/process1-2.svg",
      iconAlt: "Icon for Cloud Computing",
      delay: 500
    },
    {
      id: 3,
      title: "Automation and action",
      icon: "/assets/images/icon/process1-3.svg",
      iconAlt: "Icon for Automation and Action",
      delay: 700
    },
    {
      id: 4,
      title: "Insights and reporting",
      icon: "/assets/images/icon/process1-4.svg",
      iconAlt: "Icon for Insights and Reporting",
      delay: 900
    }
  ]
};
