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.
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.
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
npx shadcn add "https://ui.beste.co/r/logos19?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Small-caps line of context above the marquee |
logos | Logo[] | [] | Partner logos; the track renders them twice |
button | ActionButton | – | Pill action under the marquee |
className | string | – | Extra classes for the outer <section> |
type Logo = {
src: string;
alt: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};-50%, which is what makes the loop seamless: at the halfway point the second copy sits precisely where the first began.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.aria-hidden, so a screen reader reads each partner once rather than twice.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.useReducedMotion, leaving a static row rather than a paused one mid-slide.mask-image gradient on the overflow container, so the logos dissolve at both sides instead of being cut off by the clip.