export interface AboutHeroData {
  subtitle: string;
  titleStart: string;
  titleHighlight: string;
  image: {
    src: string;
    alt: string;
    width: number;
    height: number;
  };
  expBox: {
    counter: number;
    counterSuffix: string;
    label: string;
    authorImage: {
      src: string;
      alt: string;
      width: number;
      height: number;
    };
  };
  marqueeItems: string[];
}

export const aboutHeroData: AboutHeroData = {
  subtitle: "About Us",
  titleStart: "Building Smarter Solutions for",
  titleHighlight: "Connected World",
  image: {
    src: "/assets/images/hero/hero2-5.png",
    alt: "Banner hero image",
    width: 1290,
    height: 570,
  },
  expBox: {
    counter: 38,
    counterSuffix: "k+",
    label: "million our happy global clients",
    authorImage: {
      src: "/assets/images/author/exp1-1.png",
      alt: "Experience icon image",
      width: 160,
      height: 40,
    },
  },
  marqueeItems: [
    "IT Solution - Cyber Security",
    "IT Solution - Cyber Security",
    "IT Solution - Cyber Security",
    "IT Solution - Cyber Security",
  ],
};
