Beliefs About

What we hold

Polaris is a studio built on a short list of stubborn convictions about the work.

Work with the studio
01

A brand earns attention before it ever asks for it.

Bold poster pinned to a studio wall
02

Constraints are a gift, not a compromise to be negotiated.Every tight brief we have shipped became the sharper, braver version of itself.

03

Craft is felt long after the pitch deck is forgotten.

Hands refining a printed design proof
04

The best ideas survive being said out loud in plain words.If a strategy needs jargon to sound smart, it was never the strategy.

05

We would rather be unmistakable than agreeable.

Studio team reviewing layouts together
About this block

Beliefs AboutPRO

A statement heading over a belief list punctuated by intermittent inline thumbnails.

About51: Beliefs About

An asymmetric header (a two-thirds-width statement heading beside a CTA) sits above a full-width list of belief statements, each numbered and some paired with a small square thumbnail that appears only intermittently, giving the list an uneven, editorial rhythm rather than a uniform grid.

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

Base UI flavor

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

This installs the block to components/beste/block/about51.tsx, the badge6 and button1 components it uses for the eyebrow label and CTA button, and its dependencies.

Quick start

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

tsx
import { About51, about51Demo } from "@/components/beste/block/about51";

export default function AboutPage() {
  return <About51 {...about51Demo} />;
}

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

tsx
import { About51 } from "@/components/beste/block/about51";

export default function AboutPage() {
  return (
    <About51
      label="What we hold"
      heading="A team built on a short list of <strong>stubborn convictions</strong>."
      button={{ label: "Work with us", href: "https://beste.co" }}
      beliefs={[
        {
          statement: "A product earns attention before it ever asks for it.",
          image: {
            src: "https://images.unsplash.com/photo-1558655146-9f40138edfeb?w=480&h=480&fit=crop",
            alt: "Bold poster pinned to a studio wall",
          },
        },
        {
          statement: "Constraints are a gift, not a compromise to be negotiated.",
          note: "Every tight brief we shipped became the sharper version of itself.",
        },
        {
          statement: "We would rather be unmistakable than agreeable.",
          image: {
            src: "https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=480&h=480&fit=crop",
            alt: "Team reviewing layouts together",
          },
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow badge text above the heading
headingstringStatement heading; supports inline <strong> for primary-colored highlights
buttonActionLinkCTA rendered as a Button1, aligned opposite the heading
beliefsBeliefItem[][]Numbered belief rows in the list below the header
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };
type BeliefImage = { src: string; alt: string };
type BeliefItem = { statement: string; note?: string; image?: BeliefImage };

Behavior notes

  • The header is a md:flex-row md:items-end md:justify-between row with the heading capped at md:w-2/3, so the button never competes with the heading's line length; below md it stacks with the heading first.
  • Every belief row is zero-padded (01, 02, ...) at low-opacity muted-foreground color, always shown regardless of whether the row has an image.
  • The image field on BeliefItem is optional per row, and rows without one simply omit the thumbnail column's content rather than leaving a visible empty box, so belief rows visually alternate between text-only and text-with-thumbnail depending on the data (the demo shows this pattern with only 3 of its 5 beliefs carrying an image).
  • The row grid changes template between breakpoints: grid-cols-[auto_1fr] on mobile puts an image (if present) directly under the statement text, while md:grid-cols-[auto_1fr_auto] moves the thumbnail into its own trailing column beside the text.
  • An optional note renders as a smaller, regular-weight line directly under the statement inside the same paragraph, not as a separate element.

More About blocks

View all About
PRO

about61

Belief Statement Values

Two-column about section with a sticky eyebrow and big heading on the left and a long belief paragraph above a border-separated values list on the right.

PRO

about43

Heading Hero About

An oversized about statement hero above three heterogeneous zones: portrait, values and a CTA with stats.

PRO

about74

Philosophy Statement

An about section that opens on a serif statement settling in word by word, then pairs a portrait photograph drifting inside its frame with two paragraphs, a pill action and a ruled list of principles.

PRO

about59

About Statement With Pillars

Centered parenthetical eyebrow and a large statement heading, followed by a three-up row of icon pillars pairing a circular icon with a title and one-line description.

PRO

about53

Pinned Photos About

About with two subtly rotated, captioned studio photos clustered beside the statement.

PRO

about39

Numeral About

About anchored by an oversized numeral with a paragraph and a horizontal image strip.