export interface AboutHeroContent {
  title: string;
  description: string;
}

export interface AboutHeroImage {
  src: string;
  alt: string;
  width: number;
  height: number;
  className?: string;
  animation: {
    aos: string;
    duration: number;
    delay: number;
  };
}

export const aboutHeroContent: AboutHeroContent[] = [
  {
    title:
      "Driven by creativity defined by results crafting digital tech experiences that matter",
    description:
      "We are a passionate team of digital innovators, designers, strategists, and developers dedicated to creating impactful digital experiences. With a strong focus on creativity, technology, and user-centric solutions",
  },
];

export const aboutHeroImages: AboutHeroImage[] = [
  {
    src: "/assets/images/hero/page1-1.png",
    alt: "Creative digital team collaboration illustration",
    width: 631,
    height: 584,
    animation: {
      aos: "fade-up",
      duration: 900,
      delay: 300,
    },
  },
  {
    src: "/assets/images/hero/page1-2.png",
    alt: "Modern digital technology and innovation concept illustration",
    width: 631,
    height: 584,
    className: "mb-0",
    animation: {
      aos: "fade-up",
      duration: 900,
      delay: 400,
    },
  },
];
