Studio Ethos

The Polaris Ethos

We don't chase trends — we build creative that compounds in value long after the launch.

Strategy before pixels

Every engagement opens with a positioning sprint, so the work answers a business question, not just a brief.

One senior team, start to finish

The people who pitch you are the people who build for you. No hand-offs to a junior bench.

Designed to be measured

We ship with the analytics, naming, and instrumentation that prove what the creative actually moved.

Systems, not one-off assets

You leave with a documented design system your in-house team can extend for years without us.

Radical calendar honesty

Scope, timeline, and trade-offs are agreed up front. If a date slips, you hear it from us first.

About this block

Studio EthosPRO

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

Agency18: Studio Ethos

A dark, inverted panel that pairs a bold ethos statement on the left with a ruled list of concrete studio commitments on the right, each marked with a checkmark badge.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Agency18, agency18Demo } from "@/components/beste/block/agency18";

export default function AboutPage() {
  return <Agency18 {...agency18Demo} />;
}

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

tsx
import { Agency18 } from "@/components/beste/block/agency18";

export default function AboutPage() {
  return (
    <Agency18
      label="The Studio Ethos"
      statement="We build work that <strong>compounds in value</strong> long after launch."
      commitments={[
        {
          title: "Strategy before pixels",
          description: "Every engagement opens with a positioning sprint.",
        },
        {
          title: "One senior team, start to finish",
          description: "The people who pitch you are the people who build for you.",
        },
        {
          title: "Designed to be measured",
          description: "We ship with the analytics that prove what the creative moved.",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered in Badge6 with dimmed (text-background/60) label color
statementstringEthos headline, rendered with dangerouslySetInnerHTML
commitmentsCommitment[][]Ruled list of concrete commitments on the right
classNamestringExtra classes for the outer <section>
ts
type Commitment = { title: string; description: string };

Behavior notes

  • The whole block is an inverted panel (bg-foreground text-background), so Badge6 is passed labelClassName="text-background/60" to stay legible against the dark fill, and the commitments' description text uses text-background/60 for the same reason.
  • statement is injected via dangerouslySetInnerHTML and expects inline <strong> tags to highlight; highlighted spans render in text-primary. The demo's statement also uses the &mdash; HTML entity rather than a literal dash character.
  • Commitment rows are divided by border-background/15 (not the standard border token), matching the panel's inverted surface; the last row drops its bottom border and padding.
  • Each commitment's icon is a fixed checkmark (Check from lucide-react) inside a bg-primary/20 circle; there is no way to swap the icon per row.

More Agency blocks

View all Agency
PRO

agency11

Studio Manifesto

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

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

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

agency12

Studio Values

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