export interface ChooseCard {
  id: number;
  image: {
    src: string;
    alt: string;
    darkSrc?: string;
    darkAlt?: string;
  };
  title: string;
  description: string;
  variant: "large" | "small";
}

export interface WhyChooseUsData {
  subtitle: string;
  title: string;
  highlightText: string;
  cards: ChooseCard[];
}

export const whyChooseUsData: WhyChooseUsData = {
  subtitle: "Why Choose Us",
  title: "Combining AI and Human Insight for ",
  highlightText: "Maximum Impact",
  cards: [
    {
      id: 1,
      image: {
        src: "/assets/images/event/choose1-1.png",
        alt: "Cost efficient development solutions illustration",
        darkSrc: "/assets/images/event/choose-dark.png",
        darkAlt: "Cost efficient development solutions dark mode illustration",
      },
      title: "Cost-Efficient Development Solutions",
      description:
        "Lower Development Costs help businesses achieve high-quality results without overspending.",
      variant: "large",
    },
    {
      id: 2,
      image: {
        src: "/assets/images/event/choose1-2.png",
        alt: "AI and human expert insights collaboration illustration",
      },
      title: "AI & Expert Insights Together",
      description:
        "Expert + AI Combo brings together the precision of artificial intelligence.",
      variant: "small",
    },
    {
      id: 3,
      image: {
        src: "/assets/images/event/choose1-3.png",
        alt: "Faster project delivery illustration",
        darkSrc: "/assets/images/event/choose-dark1-2.png",
        darkAlt: "Faster project delivery dark mode illustration",
      },
      title: "Faster Deliver Results 3X",
      description:
        "3x Faster Delivery empowers teams to complete projects at triple.",
      variant: "small",
    },
    {
      id: 4,
      image: {
        src: "/assets/images/event/choose1-4.png",
        alt: "Scalable and seamless growth architecture illustration",
        darkSrc: "/assets/images/event/choose-dark1-3.png",
        darkAlt: "Scalable architecture dark mode illustration",
      },
      title: "Seamless Growth with Scalable Design",
      description:
        "LScalable Architecture ensures your systems and applications can grow seamlessly as your business expands.",
      variant: "large",
    },
  ],
};
