How We Think

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

PRO

Agency13: How We Think

Sticky studio-intro layout: a left column with a badge, heading, lead paragraph, and portrait image that stays pinned while a right column lists numbered principles, each with a title and description separated by hairline rules.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Agency13, agency13Demo } from "@/components/beste/block/agency13";

export default function AboutPage() {
  return <Agency13 {...agency13Demo} />;
}

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

tsx
import { Agency13 } from "@/components/beste/block/agency13";

export default function AboutPage() {
  return (
    <Agency13
      label="How We Think"
      heading="We build brands the way a studio builds a craft."
      lead="Every engagement starts with a point of view, not a template."
      image={{
        src: "https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=900&h=675&fit=crop",
        alt: "Studio team gathered around a workspace",
      }}
      principles={[
        {
          title: "Clarity before craft",
          description: "We pressure-test the idea until it holds, then make it look inevitable.",
        },
        {
          title: "Fewer, sharper decisions",
          description: "A focused brand outperforms a busy one.",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow label rendered via Badge6
headingstringHeading in the left column; plain text, no <strong> handling
leadstringIntro paragraph under the heading
imageImageItemPortrait image under the lead paragraph
principlesPrinciple[][]Numbered rows in the right column
classNamestringExtra classes for the outer <section>
ts
type ImageItem = { src: string; alt: string };
type Principle = { title: string; description: 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

agency18

Studio Ethos

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

PRO

agency14

Studio Team

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

PRO

agency16

Studio At A Glance

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

PRO

agency19

Why Polaris

A two-column comparison contrasting the Polaris way with a typical agency.

PRO

agency17

Principles Selector

Interactive principle list that swaps a detail panel with image as each is hovered.