Soft panel carrying a centered statement over an endlessly scrolling logo track with gradient edge fades that pauses on hover, closed by a ruled row of three studio figures.
Soft panel carrying a centered statement over an endlessly scrolling logo track. Gradient fades dissolve both edges into the panel, the animation pauses when the pointer is over it, and a ruled row of three figures closes the block.
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/logos14?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/logos14?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/logos14.tsx plus the badge7 component it uses for the eyebrow.
The installed file exports logos14Demo alongside the block: the exact props behind the preview above. Spread it to get a working logo marquee in one line.
import { Logos14, logos14Demo } from "@/components/beste/block/logos14";
export default function Page() {
return <Logos14 {...logos14Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Logos14 } from "@/components/beste/block/logos14";
export default function Page() {
return (
<Logos14
badge={{ label: "On the shelf" }}
heading="Work sitting in nine countries and one very long airport corridor."
items={[
{ src: "/logos/one.png", alt: "One" },
{ src: "/logos/two.png", alt: "Two" },
]}
stats={[
{ title: "Commissions since 2014", value: "212" },
{ title: "Longest running client", value: "9 years" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Centered statement above the marquee |
items | Logo[] | [] | Logos in the scrolling track |
stats | MarqueeStat[] | [] | Ruled figures under the marquee |
className | string | – | Extra classes for the outer <section> |
type Logo = {
src: string;
alt: string;
};
type MarqueeStat = {
title: string;
value: string;
};[...items, ...items] inside a w-max flex row and translates from 0 to -50%, so the second copy is exactly under the first when the animation restarts and the loop has no visible seam.<style jsx> block named logos14-marquee, so dropping this block next to another marquee section cannot collide on the animation name.from-muted to-transparent gradients, matched to the panel fill rather than the page background, which is what makes the logos dissolve instead of ending against a visible band.[animation-play-state:paused] through group-hover/logos14, giving anyone who wants to read a mark time to do so.opacity-50 grayscale with no hover brightening, per the set's rule that logo walls stay quiet.