export interface BrandLogo {
  id: number;
  img: string;
  alt: string;
}

export interface BrandData {
  title: string;
  description: string;
  logos: BrandLogo[];
}

export const brandData: BrandData = {
  title: "Trusted by over 5 million companies worldwide",
  description:
    "We’ve had the privilege working with diverse range of clients from startups to global brands — who trust us to bring their digital vision to life.",
  logos: [
    { id: 1, img: "/assets/images/brand/brand1-1.svg", alt: "brand logo 1" },
    { id: 2, img: "/assets/images/brand/brand1-2.svg", alt: "brand logo 2" },
    { id: 3, img: "/assets/images/brand/brand1-3.svg", alt: "brand logo 3" },
    { id: 4, img: "/assets/images/brand/brand1-4.svg", alt: "brand logo 4" },
    { id: 5, img: "/assets/images/brand/brand1-5.svg", alt: "brand logo 5" },
    { id: 6, img: "/assets/images/brand/brand1-6.svg", alt: "brand logo 6" },
  ],
};
