export interface HeroData {
  subtitle: string;
  title: string;
  description: string;
  buttons: {
    text: string;
    href: string;
    variant?: string;
  }[];
  animatedIcons: {
    src: string;
    alt: string;
    className: string;
  }[];
  heroImages: {
    src: string;
    alt: string;
    className: string;
  }[];
}

export const heroData: HeroData = {
  subtitle: "500k+ Global trust our platform.",
  title: "Build Quality Website Faster With AI",
  description: "AI transforms the way you build. Craft beautiful, responsive, and high-performing websites faster than ever with intelligence.",
  buttons: [
    {
      text: "Start for free",
      href: "#",
    },
    {
      text: "Build with AI",
      href: "#",
      variant: "v2",
    },
  ],
  animatedIcons: [
    {
      src: "/assets/images/icon/anim1-1.svg",
      alt: "Animated Shape 1",
      className: "icon1",
    },
    {
      src: "/assets/images/icon/anim1-2.svg",
      alt: "Animated Shape 2",
      className: "icon2",
    },
  ],
  heroImages: [
    {
      src: "/assets/images/event/laptop.png",
      alt: "Laptop Preview Light",
      className: "light",
    },
    {
      src: "/assets/images/event/laptop-dark.png",
      alt: "Laptop Preview Dark",
      className: "dark",
    },
  ],
};
