export interface ServiceBannerData {
  subTitle: string;
  title: string;
  button: {
    text: string;
    href: string;
    icon: {
      src: string;
      alt: string;
    };
  };
  image: {
    src: string;
    alt: string;
  };
}

export const serviceBannerData: ServiceBannerData = {
  subTitle: "Get Started Us",
  title: "We value every client and work hard to ensure their complete satisfaction with our services.",
  button: {
    text: "Start for free",
    href: "#",
    icon: {
      src: "assets/images/icon/arrow.svg",
      alt: "Arrow icon"
    }
  },
  image: {
    src: "assets/images/service/Graph.png",
    alt: "Service Graph Illustration"
  }
};
