Studio Manifesto

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

PRO

Agency11: Studio Manifesto

Two-column manifesto section: a narrow sticky left rail with a badge, kicker label, and founder signature, beside an oversized statement paragraph with inline emphasis and a row of principle chips.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Agency11, agency11Demo } from "@/components/beste/block/agency11";

export default function AboutPage() {
  return <Agency11 {...agency11Demo} />;
}

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

tsx
import { Agency11 } from "@/components/beste/block/agency11";

export default function AboutPage() {
  return (
    <Agency11
      label="Northwind Studio"
      kicker="Manifesto"
      statement="We build <strong>brands with a spine</strong>. Every pixel earns its place, and the work should look <strong>inevitable</strong>."
      principles={["Substance over polish", "No filler, ever"]}
      signature={{ name: "Alex Rivera", role: "Founder & Creative Director" }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow label rendered via Badge6
kickerstringSmall bold line under the label
statementstringLarge manifesto paragraph; supports inline <strong> for primary-colored emphasis
principlesstring[][]Short phrases rendered as bordered chips
signatureSignatureName and role shown under a short accent rule
classNamestringExtra classes for the outer <section>
ts
type Signature = { name: string; role: string };

Behavior notes

More Agency blocks

View all Agency
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

agency13

How We Think

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

PRO

agency15

Awards List

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

PRO

agency21

Capabilities Accordion

Ruled, expandable capability rows with oversized type, detail copy, and monospace tag chips.

PRO

agency14

Studio Team

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