"use client"; const LogoWall = ({ logos = [] }) => { // Default logos if none provided - ordered to match the screenshot const defaultLogos = [ { src: "assets/Section/Logo_FoodNotBombs.png", alt: "Food Not Bombs", size: "h-11", }, { src: "assets/Section/Logo_StartCOOP.png", alt: "Start COOP", size: "h-11", }, { src: "assets/Section/Logo_Metagov.png", alt: "Metagov", size: "h-7" }, { src: "assets/Section/Logo_OpenCivics.png", alt: "Open Civics", size: "h-7", }, { src: "assets/Section/Logo_MutualAidCO.png", alt: "Mutual Aid CO", size: "h-11", }, { src: "assets/Section/Logo_CUBoulder.png", alt: "CU Boulder", size: "h-11", }, ]; const displayLogos = logos.length > 0 ? logos : defaultLogos; return (
{/* Label */}

Trusted by leading cooperators

{/* Logo Grid Container */}
{displayLogos.map((logo, index) => (
{logo.alt}
))}
); }; export default LogoWall;