export type HomeHeroData = {
  subTitle: string;
  title: string;
  description: string;
  form: {
    placeholder: string;
    buttonText: string;
    buttonIcon: {
      src: string;
      alt: string;
      width: number;
      height: number;
    };
  };
  images: {
    light: {
      src: string;
      alt: string;
      width: number;
      height: number;
    };
    dark: {
      src: string;
      alt: string;
      width: number;
      height: number;
    };
  };
};

export const homeHeroData: HomeHeroData = {
  subTitle: "Run Your Business on Autopilot",
  title: "Next-Gen Tools for High-Performing Teams",
  description:
    "All-in-one SaaS solution designed to simplify your daily operations. Whether you're managing projects, collaborating with teams",
  form: {
    placeholder: "Enter your email address",
    buttonText: "Request a Demo",
    buttonIcon: {
      src: "/assets/images/icon/arrow.svg",
      alt: "Arrow Icon",
      width: 16,
      height: 16,
    },
  },
  images: {
    light: {
      src: "/assets/images/bg/hero1-1.png",
      alt: "hero image",
      width: 1280,
      height: 941,
    },
    dark: {
      src: "/assets/images/bg/hero1-1-dark.png",
      alt: "hero image dark",
      width: 1400,
      height: 1007,
    },
  },
};
