export interface HeroBanner {
  title: string;
  description: string;
  aosDelay: number;
}

export interface HeroIntegration {
  subTitle: string;
  title: string;
  description: string;
  aosDelay: number;
}

export interface HeroImage {
  src: string;
  alt: string;
  aosDelay: number;
}

export interface HeroData {
  banner: HeroBanner;
  integration: HeroIntegration;
  image: HeroImage;
}

export const heroData: HeroData = {
  banner: {
    title: "Powerful features for digital smarter interactions",
    description:
      "We're a team of innovators passionate about transforming the way businesses communicate. Our chatbot app is designed to streamline conversations, enhance customer engagement, and deliver instant support—24/7.",
    aosDelay: 300,
  },
  integration: {
    subTitle: "Elevate Every Interaction",
    title: "Built-In brilliance discover the smart side of chat",
    description:
      "Elevate every interaction with intelligent, real-time communication that feels personal, responsive, and effortless. Our platform is built to enhance user engagement, streamline conversations, and deliver value at every touchpoint.",
    aosDelay: 300,
  },
  image: {
    src: "/assets/images/event/phone1-2.png",
    alt: "phone image",
    aosDelay: 100,
  },
};

export default heroData;
