export interface Brand {
  id: number;
  src: string;
  alt: string;
  href: string;
}

export interface BrandData {
  title: string;
  trustedText: string;
  brands: Brand[];
}

export const brandData: BrandData = {
  title: "brand sec",
  trustedText: "Trusted by over 1.7 million companies worldwide",
  brands: [
    {
      id: 1,
      src: "/assets/images/brand/brand1.svg",
      alt: "Trusted partner company brand logo",
      href: "#",
    },
    {
      id: 2,
      src: "/assets/images/brand/brand2.svg",
      alt: "Global business client brand logo",
      href: "#",
    },
    {
      id: 3,
      src: "/assets/images/brand/brand3.svg",
      alt: "Enterprise technology brand logo",
      href: "#",
    },
    {
      id: 4,
      src: "/assets/images/brand/brand4.svg",
      alt: "International IT services brand logo",
      href: "#",
    },
    {
      id: 5,
      src: "/assets/images/brand/brand5.svg",
      alt: "Professional solutions company logo",
      href: "#",
    },
    {
      id: 6,
      src: "/assets/images/brand/brand5.svg",
      alt: "Professional solutions company logo",
      href: "#",
    },
    {
      id: 7,
      src: "/assets/images/brand/brand1.svg",
      alt: "Trusted partner company brand logo",
      href: "#",
    },
    {
      id: 8,
      src: "/assets/images/brand/brand2.svg",
      alt: "Global business client brand logo",
      href: "#",
    },
    {
      id: 9,
      src: "/assets/images/brand/brand3.svg",
      alt: "Enterprise technology brand logo",
      href: "#",
    },
    {
      id: 10,
      src: "/assets/images/brand/brand4.svg",
      alt: "International IT services brand logo",
      href: "#",
    },
    {
      id: 11,
      src: "/assets/images/brand/brand5.svg",
      alt: "Professional solutions company logo",
      href: "#",
    },
    {
      id: 12,
      src: "/assets/images/brand/brand5.svg",
      alt: "Professional solutions company logo",
      href: "#",
    },
  ],
};
