---
/**
* LogoBar
* Horizontale rij met klanten- of partnerlogo's.
*
* Props:
* - label?: string — tekst boven de logos ("Vertrouwd door")
* - logos: Array<{ src: string; alt: string; href?: string }>
* - grayscale?: boolean — logos zwart-wit (default: true)
*/
interface Props {
label?: string;
logos: { src: string; alt: string; href?: string }[];
grayscale?: boolean;
}
const { label, logos, grayscale = true } = Astro.props;
---
{label &&
{label}
}
{logos.map(logo => (
-
{logo.href ? (
) : (
)}
))}