/** Working process — crm-html/index.html main-sec2 / working-process. */

export interface ProcessStep {
  id: number;
  stepNumber: string;
  title: string;
  description: string;
}

export interface HomeProcessContent {
  subTitle: string;
  title: string;
  steps: ProcessStep[];
}

export const homeProcessContent: HomeProcessContent = {
  subTitle: "How Does It Works",
  title: "Step-by-Step How Our CRM Delivers Results",
  steps: [
    {
      id: 1,
      stepNumber: "01",
      title: "Capture and Organize Leads",
      description:
        "Easily import or collect leads from multiple sources web forms, social media, email, or integrations",
    },
    {
      id: 2,
      stepNumber: "02",
      title: "Automate Follow-Ups",
      description:
        "Save time with smart automation, ensuring timely follow-ups and stronger, lasting relationships.",
    },
    {
      id: 3,
      stepNumber: "03",
      title: "Track Sales Pipeline",
      description:
        "Gain clear visibility, monitor every deal stage, and drive consistent growth with actionable insights.",
    },
    {
      id: 4,
      stepNumber: "04",
      title: "Collaborate with Your Team",
      description:
        "Enhance teamwork, share updates instantly, and achieve goals faster with seamless team collaboration.",
    },
  ],
};
