export interface BrandItem {
  image: string;
  alt: string;
  href: string;
}

export interface BrandSectionData {
  title: string;
  brands: BrandItem[];
}

export const brandSectionData: BrandSectionData = {
  title: "Trusted by 500+ companies worldwide",
  brands: [
    {
      image: "/assets/images/brand/brand1-1.svg",
      alt: "Brand Logo 1",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-2.svg",
      alt: "Brand Logo 2",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-3.svg",
      alt: "Brand Logo 3",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-4.svg",
      alt: "Brand Logo 4",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-5.svg",
      alt: "Brand Logo 5",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-6.svg",
      alt: "Brand Logo 6",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-1.svg",
      alt: "Brand Logo 1",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-2.svg",
      alt: "Brand Logo 2",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-3.svg",
      alt: "Brand Logo 3",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-4.svg",
      alt: "Brand Logo 4",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-5.svg",
      alt: "Brand Logo 5",
      href: "#",
    },
    {
      image: "/assets/images/brand/brand1-6.svg",
      alt: "Brand Logo 6",
      href: "#",
    },
  ],
};
