Sections

Logo Cloud Sections

Logo clouds build trust by showing off the companies and partners who use your product. These components support grids, marquees, and bordered layouts for any brand's logo set.


Component Variants

Logo Cloud Simple

Logo Cloud With Heading

Logo Cloud Marquee

Logo Cloud Bordered

Usage

import {
  LogoCloudSimple,
  LogoCloudWithHeading,
  LogoCloudMarquee,
  LogoCloudBordered,
  type LogoItem,
} from '@/components/ui/logos';

const logos: LogoItem[] = [
  { name: 'Acme', href: '#', svg: <AcmeLogo /> },
  { name: 'Globex', href: '#', src: '/logos/globex.svg' },
];

// Grayscale grid that colorizes on hover
<LogoCloudSimple logos={logos} />

// "Trusted by" heading above the logos
<LogoCloudWithHeading heading="Trusted by teams at" logos={logos} />

// Infinite horizontal scroll, pauses on hover
<LogoCloudMarquee logos={logos} speedSeconds={30} />

// Logos in bordered grid cells
<LogoCloudBordered logos={logos} columns={4} /> // 3 | 4 | 5

Props Reference

LogoItem

PropTypeDescription
namestringLogo/company name, used for accessible labeling
srcstringOptional image URL for the logo
svgReactNodeOptional inline SVG mark, takes priority over src
hrefstringOptional link destination; renders the logo as a link

LogoCloudSimple

PropTypeDefaultDescription
logosLogoItem[]RequiredLogos to display

LogoCloudWithHeading

PropTypeDefaultDescription
headingstring'Trusted by teams at'Heading text above the logos
logosLogoItem[]RequiredLogos to display

LogoCloudMarquee

PropTypeDefaultDescription
logosLogoItem[]RequiredLogos to display, duplicated internally for a seamless loop
speedSecondsnumber30Duration of one full scroll cycle

LogoCloudBordered

PropTypeDefaultDescription
logosLogoItem[]RequiredLogos to display
columns3 | 4 | 54Number of grid columns

Motion and accessibility

LogoCloudMarquee pauses on hover and respects prefers-reduced-motion, disabling the scroll animation entirely for users who prefer less motion. The duplicated set used to create the seamless loop is hidden from assistive technology.

Previous
Hero Sections