export interface TabItem {
  id: string;
  target: string;
  title: string;
  description: string;
  isActive: boolean;
}

export interface TabImage {
  id: string;
  labelledBy: string;
  lightSrc: string;
  darkSrc: string;
  alt: string;
  isActive: boolean;
}

export interface ChooseUsSectionData {
  subTitle: string;
  title: string;
  tabs: TabItem[];
  tabImages: TabImage[];
}

export const chooseUsSectionData: ChooseUsSectionData = {
  subTitle: "Why Choose Us",
  title: "Proven Technology. Real Financial Impact.",
  tabs: [
    {
      id: "nav-home-tab",
      target: "#nav-home",
      title: "Advanced Security & Compliance",
      description:
        "Fintech software ensures data protection through encryption, multi-factor authentication, and adherence to regulatory standards, safeguarding.",
      isActive: true,
    },
    {
      id: "nav-profile-tab",
      target: "#nav-profile",
      title: "Real-Time Transactions & Analytics",
      description:
        "It enables instant payments, live transaction tracking, and data-driven insights, helping businesses and users make faster & smarter",
      isActive: false,
    },
    {
      id: "nav-contact-tab",
      target: "#nav-contact",
      title: "Seamless Integration & Scalability",
      description:
        "With API-driven architecture and cloud-based infrastructure, fintech software easily integrates with existing systems and scales.",
      isActive: false,
    },
  ],
  tabImages: [
    {
      id: "nav-home",
      labelledBy: "nav-home-tab",
      lightSrc: "/assets/images/event/choose1-1.png",
      darkSrc: "/assets/images/event/choose1-1-dark.webp",
      alt: "Fintech security and compliance illustration",
      isActive: true,
    },
    {
      id: "nav-profile",
      labelledBy: "nav-profile-tab",
      lightSrc: "/assets/images/event/choose1-1.png",
      darkSrc: "/assets/images/event/choose1-1-dark.webp",
      alt: "Data protection and encryption visualization",
      isActive: false,
    },
    {
      id: "nav-contact",
      labelledBy: "nav-contact-tab",
      lightSrc: "/assets/images/event/choose1-1.png",
      darkSrc: "/assets/images/event/choose1-1-dark.webp",
      alt: "Secure financial technology system illustration",
      isActive: false,
    },
  ],
};
