export type TestimonialBrand = {
  id: number;
  image: string;
  alt: string;
  path: string;
  aosDelay: string;
};

export const testimonialBrands: TestimonialBrand[] = [
  {
    id: 1,
    image: "/assets/images/brand/brand1-1.svg",
    alt: "Brand 1 Logo",
    path: "#",
    aosDelay: "200",
  },
  {
    id: 2,
    image: "/assets/images/brand/brand1-2.svg",
    alt: "Brand 2 Logo",
    path: "#",
    aosDelay: "300",
  },
  {
    id: 3,
    image: "/assets/images/brand/brand1-3.svg",
    alt: "Brand 3 Logo",
    path: "#",
    aosDelay: "400",
  },
  {
    id: 4,
    image: "/assets/images/brand/brand1-4.svg",
    alt: "Brand 4 Logo",
    path: "#",
    aosDelay: "500",
  },
  {
    id: 5,
    image: "/assets/images/brand/brand1-5.svg",
    alt: "Brand 5 Logo",
    path: "#",
    aosDelay: "600",
  },
  {
    id: 6,
    image: "/assets/images/brand/brand1-6.svg",
    alt: "Brand 6 Logo",
    path: "#",
    aosDelay: "700",
  },
  {
    id: 7,
    image: "/assets/images/brand/brand1-2.svg",
    alt: "Brand 2 Logo",
    path: "#",
    aosDelay: "300",
  },
];
