export interface BenefitItem {
  icon: string;
  title: string;
  description: string;
}

export const benefitItems1: BenefitItem[] = [
  {
    icon: "/assets/images/icon/bene1-1.svg",
    title: "Organize Tasks With Priority",
    description:
      "Stay focused and in control with intelligent task organization tools that let you assign, sort, and manage tasks efficiently.",
  },
  {
    icon: "/assets/images/icon/bene1-2.svg",
    title: "User-Friendly Interface",
    description:
      "Designed with simplicity and efficiency in mind, our user-friendly interface ensures anyone can navigate and use the software effectively.",
  },
];

export const benefitItems2: BenefitItem[] = [
  {
    icon: "/assets/images/icon/bene2-1.svg",
    title: "Cloud Deployment",
    description:
      "Solutions are built for the cloud, ensuring speed, scalability, and reliability from day one.",
  },
  {
    icon: "/assets/images/icon/bene2-2.svg",
    title: "Architecture Planning",
    description:
      "We lay the foundation for scalable, secure, and high-performing software with thoughtful architecture planning.",
  },
];
