Ruled, expandable capability rows with oversized type, detail copy, and monospace tag chips.
A sticky header rail beside an expandable capability list: each accordion row opens to a description paired with a column of tag chips, styled with oversized numerals and monospace-leaning index markers.
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/agency21?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/agency21?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/agency21.tsx, the badge7 component it uses for the eyebrow, the button12 component it uses for the CTA, and its dependencies.
The installed file exports agency21Demo alongside the block: the exact props behind the preview above. Spread it to get a working capabilities section in one line.
import { Agency21, agency21Demo } from "@/components/beste/block/agency21";
export default function CapabilitiesPage() {
return <Agency21 {...agency21Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Agency21 } from "@/components/beste/block/agency21";
export default function CapabilitiesPage() {
return (
<Agency21
badge={{ label: "What we offer" }}
heading="Capabilities, without the fluff."
button={{ label: "Start a project", href: "https://beste.co" }}
labels={{ note: "Four disciplines. One studio." }}
capabilities={[
{
index: "01",
title: "Brand & identity",
detail: "Marks, type, and tone that make a name impossible to mistake.",
tags: ["Logo systems", "Type pairing", "Voice"],
},
{
index: "02",
title: "Interface & product",
detail: "Screens that read like a magazine and behave like software.",
tags: ["UX flows", "Design systems"],
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow rendered in Badge7; hidden entirely when omitted |
heading | string | – | Section heading, rendered with dangerouslySetInnerHTML |
button | ActionButton | – | CTA under the header rail; hidden entirely when omitted |
labels | Agency21Labels | {} | Small note copy under the heading |
capabilities | Capability[] | [] | Accordion rows on the right; the accordion itself is skipped when empty |
className | string | – | Extra classes for the outer <section> |
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Agency21Labels = { note?: string };
type Capability = {
index: string;
title: string;
detail: string;
tags: string[];
};Accordion (type="single" collapsible) with defaultValue="item-0", so the first capability is expanded on initial render rather than the whole list starting closed.heading supports inline <strong> highlighting, but unlike most agency blocks in this set the highlighted span renders in text-muted-foreground, not text-primary.badge + heading + labels.note + button) is lg:sticky lg:top-24, staying pinned while the accordion list scrolls beside it on desktop.text-muted-foreground on hover (group-hover/agency21) as an affordance, since the trigger itself has no chevron styling beyond the shadcn default.tags render as plain bg-muted pills, not Badge components, and only appear when a capability has at least one tag.agency23
A services section with an eyebrow over a hairline rule, a two-column heading, and an editorial list of monospace-numbered service rows split into title and description.
agency11
Oversized editorial manifesto statement with emphasized phrases, principle chips and a founder signature.
agency17
Interactive principle list that swaps a detail panel with image as each is hovered.
agency22
A connected left-to-right sequence of numbered project phases with a ruled timeline and step dots.
agency12
Studio values laid out with oversized ghost numerals, titles, descriptions and keywords.