Logo Cloud

Trusted by the teams that send their people to us

  • Partner logo
  • Partner logo
  • Partner logo
  • Partner logo
  • Partner logo
About this block

Logo CloudPRO

A quiet logo cloud: a small-caps line of context, a seamless right-to-left marquee of greyscale logos that regain their colour on hover, and a sliding-marker pill beneath.

Logos19: Logo Cloud

A logo cloud that moves: a small-caps line of context above greyscale partner logos drifting right to left in a seamless loop behind soft edge fades, closed by a pill.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/logos19?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/logos19?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/logos19.tsx plus the button22 sliding-marker pill it uses.

Quick start

The installed file exports logos19Demo alongside the block: the exact props behind the preview above. Spread it to get a working logo cloud in one line.

tsx
import { Logos19, logos19Demo } from "@/components/beste/block/logos19";

export default function Page() {
  return <Logos19 {...logos19Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Logos19 } from "@/components/beste/block/logos19";

export default function Page() {
  return (
    <Logos19
      heading="Trusted by the teams that send their people to us"
      logos={[
        { src: "/logos/one.png", alt: "Partner logo" },
        { src: "/logos/two.png", alt: "Partner logo" },
      ]}
      button={{ label: "Workplace programmes", href: "/workplace", tone: "outline" }}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringSmall-caps line of context above the marquee
logosLogo[][]Partner logos; the track renders them twice
buttonActionButtonPill action under the marquee
classNamestringExtra classes for the outer <section>
ts
type Logo = {
  src: string;
  alt: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The track is the logo array rendered twice and translated by exactly -50%, which is what makes the loop seamless: at the halfway point the second copy sits precisely where the first began.
  • Spacing is pr-16 on each item rather than a gap on the track, because a gap would leave one extra space at the seam and the loop would visibly jump once per cycle.
  • The duplicated half carries aria-hidden, so a screen reader reads each partner once rather than twice.
  • Logos are shrink-0 max-w-none object-contain on top of h-7 w-auto. Without those, a flex child gets compressed horizontally while its height is fixed, and the marks come out squashed.
  • The animation is dropped entirely under useReducedMotion, leaving a static row rather than a paused one mid-slide.
  • The edge fades are a mask-image gradient on the overflow container, so the logos dissolve at both sides instead of being cut off by the clip.
  • The heading and the button carry their own horizontal padding while the marquee container does not, which is what lets the strip run to the full width of the section.

More Logos blocks

View all Logos
PRO

logos7

Logo Cloud

Centered grid of client wordmarks with a trusted-by intro.

PRO

logos8

Logo Marquee

Full-bleed auto-scrolling client wordmark marquee with edge fades.

PRO

logos9

Logo Grid Wall

Partitioned bordered grid of client wordmark cells.

PRO

logos10

Logos Split

Headline and blurb beside a grid of client wordmarks.

FREE

logos12

Hairline Client Wall

A client wall that sets six greyscale logos in a hairline cell grid, each lifting to full colour on hover, with an eyebrow and a short claim on the left, a reach line on the right, and a credit note underneath.

PRO

logos6

Logo Grid with Card Backgrounds

Responsive grid of partner or client logos. Each logo sits inside a softly tinted, rounded card so mixed-style logos (marks, wordmarks, scanned seals) all feel cohesive.