Beliefs About

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

PRO

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.

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

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

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.

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.