"use client"; import { memo } from "react"; import Image from "next/image"; import type { LogoWallViewProps } from "./LogoWall.types"; function LogoWallView({ isVisible, displayLogos, className, }: LogoWallViewProps) { return (
{/* Label */}

Trusted by leading cooperators

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