Studio Values

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

PRO

Agency12: Studio Values

Operating-principles section with a split header (large heading left, vertical divider, eyebrow badge right) above a two-column list of values, each marked with an oversized ghost numeral, a keyword, a title, and a description.

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

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/agency12?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/agency12.tsx, the badge6 component it uses for the eyebrow label, and its dependencies.

Quick start

The installed file exports agency12Demo alongside the block: the exact props behind the preview above. Spread it to get a working values section in one line.

tsx
import { Agency12, agency12Demo } from "@/components/beste/block/agency12";

export default function AboutPage() {
  return <Agency12 {...agency12Demo} />;
}

Then replace the demo with your own props. Written out, the same setup looks like this:

tsx
import { Agency12 } from "@/components/beste/block/agency12";

export default function AboutPage() {
  return (
    <Agency12
      label="Operating Principles"
      heading="The principles that hold every engagement together."
      values={[
        {
          keyword: "Rigor",
          title: "Evidence before instinct",
          description: "We pressure-test every creative bet against real signal.",
        },
        {
          keyword: "Restraint",
          title: "Edit until it hurts",
          description: "The strongest version is usually the one with the most cut away.",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow label rendered via Badge6, right-aligned in the header
headingstringLarge section heading, left-aligned in the header
valuesValueItem[][]Value entries rendered in the numbered grid
classNamestringExtra classes for the outer <section>
ts
type ValueItem = { title: string; description: string; keyword: string };

Behavior notes

More Agency blocks

View all Agency
PRO

agency11

Studio Manifesto

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

PRO

agency16

Studio At A Glance

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

PRO

agency18

Studio Ethos

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

PRO

agency15

Awards List

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

PRO

agency14

Studio Team

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

PRO

agency13

How We Think

Sticky studio intro with a portrait beside a stack of numbered principles.