Studio At A Glance

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

PRO

Agency16: Studio At A Glance

Two-column studio overview: copy, a definition-list of quick facts, and a pair of highlight stats pinned to the bottom on the left, a full-bleed studio photo on the right.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Agency16, agency16Demo } from "@/components/beste/block/agency16";

export default function AboutPage() {
  return <Agency16 {...agency16Demo} />;
}

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

tsx
import { Agency16 } from "@/components/beste/block/agency16";

export default function AboutPage() {
  return (
    <Agency16
      label="Studio at a glance"
      heading="A small studio with a long memory for craft."
      description="We keep the roster deliberately small so the people you meet are the people who do the work."
      facts={[
        { label: "Founded", value: "2016, Portland" },
        { label: "Location", value: "Remote-first" },
        { label: "Team", value: "11 makers" },
      ]}
      image={{
        src: "https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&h=1600&fit=crop",
        alt: "Studio workspace with desks and natural light",
      }}
      highlights={[
        { value: "140+", label: "Projects shipped" },
        { value: "9 yrs", label: "Building together" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered in Badge6
headingstringSection heading
descriptionstringBody copy under the heading
factsFact[][]Definition-list rows (label/value pairs)
imageStudioImageFull-bleed photo on the right column; the panel stays an empty muted box if omitted
highlightsHighlight[][]Highlight stat pair pinned to the bottom of the left column
classNamestringExtra classes for the outer <section>
ts
type Fact = { label: string; value: string };
type Highlight = { value: string; label: string };
type StudioImage = { src: string; alt: string };

Behavior notes

More Agency blocks

View all Agency
PRO

agency14

Studio Team

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

PRO

agency15

Awards List

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

PRO

agency12

Studio Values

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

PRO

agency13

How We Think

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

PRO

agency18

Studio Ethos

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

PRO

agency20

Clients & Outcomes

Client logo cloud paired with measurable engagement outcomes.