Skip to content
LinkPress™

Sections

Logo Cloud

Display social proof with partner logos.

The LogoCloud displays a grid of partner or client logos.

Note: This component currently fetches data from the partners content collection or falls back to a default list defined in the component. To customize it, please edit src/components/LogoCloud.astro or add entries to your partners collection.

Usage


<LogoCloud 
  title="Trusted by amazing companies" 
  logos={[
    { name: 'Company A', src: '/path/to/logo.webp' },
    { name: 'Company B', src: '/path/to/logo.webp' }
  ]}
/>

Example

Props

PropTypeDefaultDescription
titlestring'Trusted by...'Optional heading over the logos.
logosLogo[][]Array of logo objects.

Logo Interface

interface Logo {
  name: string;
  src: string;
  description?: string;
}