Belief Statement Values

(Our belief)

We design like it is ours to keep.

Most studios hand off the files and move on. We treat every project as if our own name lived on the front door for the next decade. That means we sweat the kerning at 2am, argue about a single radius, and ship nothing we would quietly redesign in private. Ownership is not a stage in our process. It is the only way we know how to work.

Slow enough to be sure

We would rather spend an extra week interrogating a layout than ship a draft dressed up as a decision. Pace is a feature, not a constraint.

Opinion before consensus

A brand built by committee tastes like nothing. We bring a clear point of view first, then earn agreement by defending the reasoning behind it.

Details no one asked for

The micro-interaction, the empty state, the back of the business card. The work people remember is almost always made of things they never requested.

Built to outlast the trend

Anything fashionable enough to spike today is forgettable enough to date tomorrow. We design for the version of you that exists three years from now.

About this block

Belief Statement ValuesPRO

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.

About61: Belief Statement Values

Two-column about section: a sticky eyebrow and heading on the left, and a long belief paragraph above a border-separated values list on the right. No image and no 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.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About61, about61Demo } from "@/components/beste/block/about61";

export default function Page() {
  return <About61 {...about61Demo} />;
}

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

tsx
import { About61 } from "@/components/beste/block/about61";

export default function Page() {
  return (
    <About61
      badge={{ label: "Our belief" }}
      heading="We design like it is <strong>ours to keep.</strong>"
      description="Most studios hand off the files and move on. We treat every project as our own."
      values={[
        { title: "Slow enough to be sure", description: "Pace is a feature, not a constraint." },
        { title: "Opinion before consensus", description: "We bring a clear point of view first." },
        { title: "Details no one asked for", description: "The work people remember is made of small things." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow text rendered in a Badge7, part of the sticky left column
headingstringLeft-column heading; supports inline HTML (<strong>)
descriptionstringLong belief paragraph at the top of the right column
valuesAbout61Value[][]Border-separated list of value entries in the right column
classNamestringExtra classes for the outer <section>
ts
type About61Value = { title: string; description: string };

Behavior notes

  • The left column (badge + heading) is sticky on desktop (lg:sticky lg:top-24 lg:self-start), so it stays pinned in view while the right column's description and values list scroll past it.
  • Values are separated by top borders, with first:border-t-0 first:pt-0 removing the border and padding from the first entry, producing a divided list rather than individual bordered cards.
  • There is no numbering, icon, image, or CTA anywhere in this component; entries are plain title/description pairs, which distinguishes it from about55's numbered Four Parts pattern.
  • Below lg, the two columns stack in document order (badge/heading first, then description and values) with no sticky behavior.

More About blocks

View all About
PRO

about51

Beliefs About

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

PRO

about57

Values And Mission Statement

Two centered statements on a dark surface, each with an accent heading, an uppercase paragraph, and a small label beneath.

PRO

about66

About with Stats Grid

Two-column about with a tall image on one side and an eyebrow, heading, description, and 2x2 stats grid on the other.

PRO

about5

Image & Text Split

Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.

PRO

about34

About Stats Grid

About section: eyebrow label, two-tone heading, two portraits beside a 2x2 stats grid.

PRO

about21

Checklist & Image Split

Two-column layout with checklist highlights on the left, featured image and testimonial quote on the right, plus a full-width stats row.