Client proof organised by sector: each ruled row names the sector, explains the kind of work it involves, and lines the matching grayscale logos up on the right edge.
Client proof organised by sector rather than dumped into a grid. Each ruled row names the sector, explains the kind of work it involves, and lines the matching grayscale logos up on the right edge, so the wall reads as an argument instead of a wallpaper.
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/logos15?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/logos15?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/logos15.tsx plus the badge7 eyebrow and button12 pill button it uses.
The installed file exports logos15Demo alongside the block: the exact props behind the preview above. Spread it to get a working client index in one line.
import { Logos15, logos15Demo } from "@/components/beste/block/logos15";
export default function Page() {
return <Logos15 {...logos15Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Logos15 } from "@/components/beste/block/logos15";
export default function Page() {
return (
<Logos15
badge={{ label: "By sector" }}
heading="Where the work tends to end up."
sectors={[
{
title: "Culture",
summary: "Museums, festivals and presses, where the audience reads everything twice.",
logos: [
{ src: "/logos/one.png", alt: "One" },
{ src: "/logos/two.png", alt: "Two" },
],
},
]}
button={{ label: "Browse the archive", href: "/work" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Section heading beside the CTA |
sectors | SectorRow[] | [] | One ruled row per sector |
button | ActionButton | – | Outline pill CTA in the header, rendered as Button12 |
className | string | – | Extra classes for the outer <section> |
type SectorRow = {
title: string;
summary: string;
logos: Logo[];
};
type Logo = {
src: string;
alt: string;
};
type ActionButton = {
label: string;
href: string;
};md:grid-cols-[minmax(0,16rem)_1fr_auto], so the sector name keeps a fixed measure, the summary takes the slack, and the logo cluster hugs the right edge however many marks it holds.flex-wrap and md:justify-end, so a sector with five marks pushes onto a second line inside its own row rather than widening the column.opacity-50 grayscale and no hover state, which is the set's rule for logo walls.border-t alone with vertical padding, so the block reads as a ruled index and adding a sector never disturbs the ones above it.md each row stacks to title, summary and a left-aligned logo cluster, keeping the sector grouping legible on a phone.logos13
Client proof band with a parenthetical eyebrow, a display heading beside a supporting paragraph, and a ruled grid of grayscale logos where each one carries a plain caption naming the work, closed by a footnote and a pill CTA.