export interface HeroButton {
  id: number;
  text: string;
  link: string;
  icon: string;
  iconAlt: string;
  className: string;
}

export interface PlatformHeroData {
  subtitle: string;
  title: string;
  description: string;
  image: string;
  imageAlt: string;
  buttons: HeroButton[];
}

export const platformHeroData: PlatformHeroData = {
  subtitle: "Turn Data Into Growth",
  title: "Technology that power our solutions",
  description: "At the heart of every innovative solution lies cutting-edge technology. Our platform harnesses advanced tools and intelligent systems to deliver seamless, efficient, and scalable outcomes.",
  image: "/assets/images/hero/hero1-2.png",
  imageAlt: "Illustration of technology solutions",
  buttons: [
    {
      id: 1,
      text: "Explore Technology",
      link: "#",
      icon: "/assets/images/icon/arrow.svg",
      iconAlt: "Arrow icon for Explore Technology button",
      className: "btn-style1"
    },
    {
      id: 2,
      text: "Request a Demo",
      link: "#",
      icon: "/assets/images/icon/arrow.svg",
      iconAlt: "Arrow icon for Request a Demo button",
      className: "btn-style1 v2"
    }
  ]
};
