export type UserStatisticsFunFactItem = {
  id: string;
  value: string;
  label: string;
  wrapperClass: string;
  colClass: string;
  aos: { type: string; duration: number; delay: number };
  headingTag: "h3" | "h4";
};

export const userStatisticsFunFactItems: UserStatisticsFunFactItem[] = [
  {
    id: "clients-satisfaction",
    value: "99%",
    label: "Clients Satisfactions",
    wrapperClass: "funfact-block-one v2",
    colClass: "col-lg-12",
    aos: { type: "fade-left", duration: 900, delay: 200 },
    headingTag: "h3",
  },
  {
    id: "projects-completed",
    value: "10k+",
    label: "Successfully Projects Complete (SaaS)",
    wrapperClass: "funfact-block-one v3",
    colClass: "col-lg-6 col-md-6 col-sm-6",
    aos: { type: "fade-up", duration: 900, delay: 300 },
    headingTag: "h3",
  },
  {
    id: "awards-winning",
    value: "90+",
    label: "International Awards Winning For Services",
    wrapperClass: "funfact-block-one v4",
    colClass: "col-lg-6 col-md-6 col-sm-6",
    aos: { type: "fade-up", duration: 900, delay: 400 },
    headingTag: "h4",
  },
];

export const userStatisticsTeamHighlight = {
  value: "38+",
  title: "Professional Team Members",
  quote:
    "Our team is passionate group of thinkers, creators, problem solvers dedicated building.",
  authorImageSrc: "/assets/images/author/authers1-1.png",
  authorImageAlt: "Company team members profile group image",
  mainImageSrc: "/assets/images/event/funfact1-1.png",
  mainImageAlt: "Professional team working together in office illustration",
} as const;
