Why Polaris

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

PRO

Agency19: Why Polaris

A two-column comparison that sets a highlighted "our way" column with check-marked rows against a muted "typical agency" column with dash-marked rows, closing with a centered CTA.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Agency19, agency19Demo } from "@/components/beste/block/agency19";

export default function AboutPage() {
  return <Agency19 {...agency19Demo} />;
}

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

tsx
import { Agency19 } from "@/components/beste/block/agency19";

export default function AboutPage() {
  return (
    <Agency19
      label="Why us"
      heading="Our way <strong>vs.</strong> the usual agency"
      description="Same brief, two very different experiences."
      polaris={{ title: "Our way", tag: "Recommended" }}
      polarisRows={[
        "A senior strategist owns your account from kickoff to launch.",
        "Fixed-scope pricing agreed up front.",
        "Weekly working sessions where you see real progress.",
      ]}
      typical={{ title: "The usual agency" }}
      typicalRows={[
        "Your project is handed off to whoever is on the bench.",
        "Open-ended hourly billing that quietly balloons.",
        "Monthly check-ins long on slides, short on shipped work.",
      ]}
      button={{ label: "Start a project", href: "https://beste.co" }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered in Badge6, centered above the heading
headingstringSection heading, rendered with dangerouslySetInnerHTML
descriptionstringCentered intro text under the heading
polarisColumnHeaderTitle (and optional pill tag) for the highlighted left column
polarisRowsstring[][]Check-marked rows in the highlighted column
typicalColumnHeaderTitle (and optional pill tag) for the muted right column
typicalRowsstring[][]Dash-marked rows in the muted column
buttonActionLinkCentered CTA below the columns; hidden entirely when omitted
classNamestringExtra classes for the outer <section>
ts
type ColumnHeader = { title: string; tag?: string };
type ActionLink = { label: string; href: string };

Behavior notes

More Agency blocks

View all Agency
PRO

agency13

How We Think

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

PRO

agency16

Studio At A Glance

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

PRO

agency20

Clients & Outcomes

Client logo cloud paired with measurable engagement outcomes.

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

agency18

Studio Ethos

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