Awards List

Awards & Recognition

A shelf earned one launch at a time.

48 awards since 2016

2025

Site of the Year

Meridian Capital — Polaris

Honored for a fund report that turns spreadsheets into a guided, scrollable narrative.

2024

Developer Award

Atlas Field Notes — Polaris

Recognized for a near-zero-bundle reading experience that loads in under a heartbeat.

2024

Site of the Day

Lantern Wellness — Polaris

Awarded for an onboarding flow that reads more like a conversation than a form.

2023

Honor of Distinction

Cobalt Studios — Polaris

Cited for a typographic system that carries the brand without a single stock image.

2023

Mobile Excellence

Harbor Transit — Polaris

Praised for a route planner that stays legible at arm's length on a moving train.

2022

Best Interaction

Verge Editorial — Polaris

Selected for scroll choreography that paces a long read like a film cut.

2021

Studio of the Month

Polaris Collective

Granted for a year of restrained, durable work across six client launches.

2019

Founders' Pick

Driftline Maps — Polaris

Chosen for a map interface that hides complexity until the moment you need it.

About this block

Awards ListPRO

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

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.

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/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

  • Rows are laid out as 120px_1fr_auto grid columns from md up (year, title/project, recognition); below md they stack to a single column.
  • Each row is a horizontal rule that shifts slightly right on hover (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.
  • The recognition text is right-aligned on desktop (md:text-right) and capped at max-w-sm, keeping long descriptions from stretching the third column.

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

agency11

Studio Manifesto

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

PRO

agency12

Studio Values

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

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.