Awards List

Editorial list of studio awards by year with project and recognition details.

PRO

Agency15: Awards List

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.

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.

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

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered in Badge6 above the heading
headingstringSection heading
summarystringShort stat aligned opposite the heading (right side on desktop)
awardsAward[][]Rows of the editorial award list, in the order they render
classNamestringExtra classes for the outer <section>
ts
type Award = {
  year: string;
  title: string;
  project: string;
  recognition: string;
};

Behavior notes

More Agency blocks

View all Agency
PRO

agency16

Studio At A Glance

Studio overview pairing facts, copy and highlight stats with a clean studio image.

PRO

agency14

Studio Team

A studio team grid of member portraits with names and roles.

PRO

agency18

Studio Ethos

A bold ethos statement beside a list of concrete studio commitments.

PRO

agency12

Studio Values

Studio values laid out with oversized ghost numerals, titles, descriptions and keywords.

PRO

agency11

Studio Manifesto

Oversized editorial manifesto statement with emphasized phrases, principle chips and a founder signature.

PRO

agency23

Numbered Services List

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.