MeaChat
Docs / Logo Cloud

Logo Cloud

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

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

Vercel

Deployment Platform

Astro

Web Framework

Google

Search Giant

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;
}