export interface ProcessItem {
  id: number;
  step: string;
  title: string;
  description: string;
  img: string;
  isActive: boolean;
}

export interface ProcessData {
  subTitle: string;
  title: string;
  processes: ProcessItem[];
}

export const processData: ProcessData = {
  subTitle: "Working Process",
  title: "Our roadmap to building powerful digital products easy process",
  processes: [
    {
      id: 1,
      step: "(Step 01)",
      title: "Research & Discover",
      description: "We craft user-centric UI/UX designs in Figma — focusing on clean layouts, intuitive flow, and visual consistency",
      img: "/assets/images/event/process1-1.png",
      isActive: true,
    },
    {
      id: 2,
      step: "(Step 02)",
      title: "Wireframe & design",
      description: "We craft user-centric UI/UX designs in Figma — focusing on clean layouts, intuitive flow, and visual consistency",
      img: "/assets/images/event/process1-2.webp",
      isActive: false,
    },
    {
      id: 3,
      step: "(Step 03)",
      title: "Testing & development",
      description: "We craft user-centric UI/UX designs in Figma — focusing on clean layouts, intuitive flow, and visual consistency",
      img: "/assets/images/event/process1-3.webp",
      isActive: false,
    },
    {
      id: 4,
      step: "(Step 04)",
      title: "Deliver & results",
      description: "We craft user-centric UI/UX designs in Figma — focusing on clean layouts, intuitive flow, and visual consistency",
      img: "/assets/images/event/process1-4.webp",
      isActive: false,
    },
  ],
};
