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

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

export interface IntegrationHeroData {
  banner: IntegrationHeroBanner;
  image: IntegrationHeroImage;
}

export const heroData: IntegrationHeroData = {
  banner: {
    title: "Powerful integrations that work for you",
    description:
      "Our platform is designed to seamlessly integrate with the tools and systems you already use — making your workflow smoother, smarter, and more efficient.",
    aosDelay: 300,
  },
  image: {
    src: "/assets/images/event/banner1-1.png",
    alt: "banner",
    aosDelay: 300,
  },
};

export default heroData;
