export interface AboutData {
  subtitle: string;
  title: string;
  ctaButton: {
    label: string;
    href: string;
    icon: string;
  };
  image: {
    src: string;
    alt: string;
  };
}

export const aboutData: AboutData = {
  subtitle: "Learn About us",
  title:
    "We deliver end-to-end technology solutions that help businesses innovate and grow. Custom software development to cloud integration",
  ctaButton: {
    label: "Learn More Us",
    href: "#",
    icon: "/assets/images/icon/arrow.svg",
  },
  image: {
    src: "/assets/images/about/about1-1.png",
    alt: "About our company and technology solutions illustration",
  },
};
