export interface AboutTab {
  id: string;
  label: string;
  description: string;
  listItems: string[];
  buttonLabel: string;
  buttonHref: string;
  buttonIcon: string;
}

export interface AboutOverviewData {
  subtitle: string;
  titleStart: string;
  titleHighlight: string;
  description: string;
  innerImage: {
    src: string;
    alt: string;
    width: number;
    height: number;
  };
  tabs: AboutTab[];
  sideImage: {
    src: string;
    alt: string;
    width: number;
    height: number;
  };
  counter: {
    value: number;
    suffix: string;
    label: string;
  };
}

export const aboutOverviewData: AboutOverviewData = {
  subtitle: "Learn About us",
  titleStart: "Transforming Ideas into",
  titleHighlight: "Intelligent Solutions",
  description:
    "We specialize in delivering innovative IT solutions empower businesses to thrive in the digital age. From cloud computing and software development cybersecurity and data analytics.",
  innerImage: {
    src: "/assets/images/about/about2-1.png",
    alt: "Team working on IT solutions",
    width: 400,
    height: 480,
  },
  tabs: [
    {
      id: "who-we-are",
      label: "Who We Are?",
      description:
        "We are a team of passionate technology experts dedicated to transforming businesses through innovation and intelligent solutions.",
      listItems: [
        "Experienced IT Professionals",
        "Client-Centered Approach",
        "Innovative Mindset & End-to-End Solutions",
      ],
      buttonLabel: "Meet Our Teams",
      buttonHref: "#",
      buttonIcon: "/assets/images/icon/arrow.svg",
    },
    {
      id: "our-goals",
      label: "Our Goals",
      description:
        "We focus on building innovative IT solutions designed to improve efficiency, reduce costs, and support long-term business success.",
      listItems: [
        "Innovation that lasts",
        "Scalable, secure solutions",
        "Streamlined digital operations",
      ],
      buttonLabel: "Meet Our Teams",
      buttonHref: "#",
      buttonIcon: "/assets/images/icon/arrow.svg",
    },
  ],
  sideImage: {
    src: "/assets/images/about/about2-2.png",
    alt: "Company office workspace",
    width: 500,
    height: 600,
  },
  counter: {
    value: 10,
    suffix: "+",
    label: "Years of experience in IT Solutions",
  },
};
