export interface AnimatedIcon {
  src: string;
  alt: string;
  className: string;
}

export interface ContactHeroData {
  subTitle: string;
  title: string;
  description: string;
  animatedIcons: AnimatedIcon[];
}

export const contactHeroData: ContactHeroData = {
  subTitle: "Contact",
  title: "Let's Build Something Great Together",
  description: "We'd love to hear from you! Whether you have questions, feedback, or a project you'd like to discuss.",
  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"
    }
  ]
};
