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

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.

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

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.