export type OurTeamAnalyticsSectionData = {
  subtitle: string;
  title: string;
  description: string;
  cta: {
    label: string;
    href: string;
    iconSrc: string;
    iconAlt: string;
  };
  image: {
    src: string;
    alt: string;
  };
  aos: {
    contentDelay: number;
    imageDelay: number;
    duration: number;
  };
};

export const ourTeamAnalytics: OurTeamAnalyticsSectionData = {
  subtitle: "Analytics Results",
  title: "Create Yearly Sales & Analytics Results",
  description:
    "Visualize performance trends, identify key revenue drivers, and make data-driven decisions to scale faster and smarter. No spreadsheets, no guesswork—just real insights that fuel real results.",
  cta: {
    label: "Explore more Features",
    href: "#",
    iconSrc: "/assets/images/icon/arrow.svg",
    iconAlt: "Arrow Icon",
  },
  image: {
    src: "/assets/images/event/result2-1.png",
    alt: "Yearly sales and analytics visualization",
  },
  aos: {
    contentDelay: 300,
    imageDelay: 300,
    duration: 900,
  },
};
