export interface Brand {
  id: number;
  image: string;
  alt: string;
  aosDelay: number;
}

export interface BrandLogosData {
  subtitle: string;
  title: string;
  description: string;
  brands: Brand[];
}

export const brandLogosData: BrandLogosData = {
  subtitle: "Meet our trusted clients",
  title: "Trusted by over 5 million companies worldwide",
  description:
    "Our chatbot app is trusted by businesses of all sizes-from innovative startups to global enterprises. We're proud to support a growing network",
  brands: [
    {
      id: 1,
      image: "/assets/images/brand/brand1-1.svg",
      alt: "Brand Logo 1",
      aosDelay: 100,
    },
    {
      id: 2,
      image: "/assets/images/brand/brand1-2.svg",
      alt: "Brand Logo 2",
      aosDelay: 200,
    },
    {
      id: 3,
      image: "/assets/images/brand/brand1-3.svg",
      alt: "Brand Logo 3",
      aosDelay: 300,
    },
    {
      id: 4,
      image: "/assets/images/brand/brand1-4.svg",
      alt: "Brand Logo 4",
      aosDelay: 400,
    },
    {
      id: 5,
      image: "/assets/images/brand/brand1-5.svg",
      alt: "Brand Logo 5",
      aosDelay: 500,
    },
    {
      id: 6,
      image: "/assets/images/brand/brand1-6.svg",
      alt: "Brand Logo 6",
      aosDelay: 600,
    },
    {
      id: 7,
      image: "/assets/images/brand/brand1-7.svg",
      alt: "Brand Logo 7",
      aosDelay: 700,
    },
    {
      id: 8,
      image: "/assets/images/brand/brand1-1.svg",
      alt: "Brand Logo 1",
      aosDelay: 800,
    },
  ],
};
