Editorial award list where each row lines up a year, the award title and the winning project, and a right-aligned recognition sentence, with a running award count sitting opposite the section heading.
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/agency15?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/agency15?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/agency15.tsx, the badge6 component it uses for the section eyebrow, and its dependencies.
The installed file exports agency15Demo alongside the block: the exact props behind the preview above. Spread it to get a working awards list in one line.
import { Agency15, agency15Demo } from "@/components/beste/block/agency15";
export default function AboutPage() {
return <Agency15 {...agency15Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Agency15 } from "@/components/beste/block/agency15";
export default function AboutPage() {
return (
<Agency15
label="Awards & Recognition"
heading="A shelf earned one launch at a time."
summary="48 awards since 2016"
awards={[
{
year: "2025",
title: "Site of the Year",
project: "Meridian Capital — Polaris",
recognition: "Honored for a fund report that turns spreadsheets into a guided narrative.",
},
{
year: "2024",
title: "Developer Award",
project: "Atlas Field Notes — Polaris",
recognition: "Recognized for a near-zero-bundle reading experience.",
},
{
year: "2023",
title: "Honor of Distinction",
project: "Cobalt Studios — Polaris",
recognition: "Cited for a typographic system that carries the brand alone.",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow text rendered in Badge6 above the heading |
heading | string | – | Section heading |
summary | string | – | Short stat aligned opposite the heading (right side on desktop) |
awards | Award[] | [] | Rows of the editorial award list, in the order they render |
className | string | – | Extra classes for the outer <section> |
type Award = {
year: string;
title: string;
project: string;
recognition: string;
};120px_1fr_auto grid columns from md up (year, title/project, recognition); below md they stack to a single column.md:hover:pl-3), giving a subtle editorial-list interaction with no click target.summary and heading share a flex row that stacks on mobile and goes side by side (items-end justify-between) from md up, so the stat visually anchors to the heading's baseline on desktop.md:text-right) and capped at max-w-sm, keeping long descriptions from stretching the third column.agency16
Studio overview pairing facts, copy and highlight stats with a clean studio image.
agency12
Studio values laid out with oversized ghost numerals, titles, descriptions and keywords.
agency11
Oversized editorial manifesto statement with emphasized phrases, principle chips and a founder signature.
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.