export interface FunFact {
  id: number;
  subtitle: string;
  counter: number;
  suffix: string;
  description: string;
  aosDelay: number;
}

export interface FunFactsData {
  facts: FunFact[];
}

export const funFactsData: FunFactsData = {
  facts: [
    {
      id: 1,
      subtitle: "Project Complete",
      counter: 35,
      suffix: "k+",
      description: "We take pride in delivering wide range of IT solutions",
      aosDelay: 300,
    },
    {
      id: 2,
      subtitle: "Clients Satisfactions",
      counter: 99,
      suffix: "%",
      description:
        "We strive to exceed expectation delivering reliable, innovative.",
      aosDelay: 400,
    },
    {
      id: 3,
      subtitle: "Years Of Experience",
      counter: 10,
      suffix: "+",
      description:
        "We have successfully delivered innovative solutions to clients.",
      aosDelay: 500,
    },
    {
      id: 4,
      subtitle: "Revenue Growth",
      counter: 13,
      suffix: "m",
      description: "Average revenue growth for per successful clients",
      aosDelay: 600,
    },
  ],
};
