export interface HeroButton {
  label: string;
  href: string;
  variant: "primary" | "secondary";
  icon: string;
}

export interface HeroData {
  subtitle: string;
  title: string;
  highlightText: string;
  description: string;
  buttons: HeroButton[];
  images: {
    left: {
      src: string;
      alt: string;
    };
    center: {
      src: string;
      alt: string;
      videoIcon: string;
      videoSrc: string;
    };
    right: {
      src: string;
      alt: string;
    };
  };
}

export const heroData: HeroData = {
  subtitle: "Innovative IT Solutions",
  title: "Driving innovation with cutting-edge ",
  highlightText: "IT solutions",
  description:
    "We provide innovative, secure, and scalable technology services tailored to your unique needs",
  buttons: [
    {
      label: "Start Your Project",
      href: "#",
      variant: "primary",
      icon: "/assets/images/icon/arrow.svg",
    },
    {
      label: "Sell All Works",
      href: "#",
      variant: "secondary",
      icon: "/assets/images/icon/arrow.svg",
    },
  ],
  images: {
    left: {
      src: "/assets/images/hero/hero1-1.png",
      alt: "IT solutions hero main illustration",
    },
    center: {
      src: "/assets/images/hero/hero1-2.png",
      alt: "Company introduction video thumbnail",
      videoIcon: "/assets/images/icon/play.svg",
      videoSrc: "https://youtu.be/_qJHZ7wBeVQ?si=JnJeivbHvpkPasQ2",
    },
    right: {
      src: "/assets/images/hero/hero1-3.png",
      alt: "Decorative IT technology graphic",
    },
  },
};
