Sector Grouped Client IndexPRO

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.

Logos15: Sector Grouped Client Index

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.

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/logos15?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading beside the CTA
sectorsSectorRow[][]One ruled row per sector
buttonActionButtonOutline pill CTA in the header, rendered as Button12
classNamestringExtra classes for the outer <section>
ts
type SectorRow = {
  title: string;
  summary: string;
  logos: Logo[];
};

type Logo = {
  src: string;
  alt: string;
};

type ActionButton = {
  label: string;
  href: string;
};

Behavior notes

More Logos blocks

View all Logos
FREE

logos13

Ruled Client Roster

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.

PRO

logos9

Logo Grid Wall

Partitioned bordered grid of client wordmark cells.

PRO

logos7

Logo Cloud

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

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

logos11

Logos With Stat

A headline stat of trust above a centered row of client wordmarks.

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.

Markdown version