ASTRO攻略LABO ロゴ daito | FX & Prop Trading Top 2.3%
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.webp' },
    { name: 'Company B', src: '/path/to/logo.webp' }
  ]}
/>

Example

Our Partners

Vercel
Deployment Platform
Astro
Web Framework
Google
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;
}