/** Brand strip — index.html uses brand1-1…brand1-6; public bundle ships brand1…brand6.svg. */

export interface BrandSlide {
  id: number;
  imageSrc: string;
  alt: string;
  href: string;
}

export interface HomeBrandContent {
  title: string;
  slides: BrandSlide[];
}

export const homeBrandContent: HomeBrandContent = {
  title: "Trusted by over 1.7 million companies worldwide",
  slides: [
    {
      id: 1,
      imageSrc: "/assets/images/brand/brand1.svg",
      alt: "Brand Logo 1",
      href: "#",
    },
    {
      id: 2,
      imageSrc: "/assets/images/brand/brand2.svg",
      alt: "Brand Logo 2",
      href: "#",
    },
    {
      id: 3,
      imageSrc: "/assets/images/brand/brand3.svg",
      alt: "Brand Logo 3",
      href: "#",
    },
    {
      id: 4,
      imageSrc: "/assets/images/brand/brand4.svg",
      alt: "Brand Logo 4",
      href: "#",
    },
    {
      id: 5,
      imageSrc: "/assets/images/brand/brand5.svg",
      alt: "Brand Logo 5",
      href: "#",
    },
    {
      id: 6,
      imageSrc: "/assets/images/brand/brand6.svg",
      alt: "Brand Logo 6",
      href: "#",
    },
  ],
};
