Logo Cloud
The LogoCloud displays a grid of partner or client logos.
Note: This component currently fetches data from the
partnerscontent collection or falls back to a default list defined in the component. To customize it, please editsrc/components/LogoCloud.astroor add entries to yourpartnerscollection.
Usage
import LogoCloud from '~/components/sections/LogoCloud.astro';
<LogoCloud
title="Trusted by amazing companies"
logos={[
{ name: 'Company A', src: '/path/to/logo.png' },
{ name: 'Company B', src: '/path/to/logo.png' }
]}
/>
Example
Our Partners
Deployment Platform
Web Framework
Search Giant
Props
| Prop | Type | Default | Description |
|---|---|---|---|
title | string | 'Trusted by...' | Optional heading over the logos. |
logos | Logo[] | [] | Array of logo objects. |
Logo Interface
interface Logo {
name: string;
src: string;
description?: string;
}