Pinned Photos About

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

PRO

About53: Pinned Photos About

About section that pairs a two-photo pinned cluster (rotated, captioned cards with a small pin dot, like notes tacked to a board) against a statement, an inline stats line, and a single CTA button. The photo cluster and statement swap sides between mobile and desktop.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About53, about53Demo } from "@/components/beste/block/about53";

export default function Page() {
  return <About53 {...about53Demo} />;
}

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

tsx
import { About53 } from "@/components/beste/block/about53";

export default function Page() {
  return (
    <About53
      label="Inside The Studio"
      heading="We build <strong>brands</strong> that people pin to their wall."
      description="Polaris is a small creative studio working at the seam of strategy and craft."
      button={{ label: "See The Studio", href: "/studio" }}
      photos={[
        { image: "https://images.unsplash.com/photo-1542038784456-1ea8e935640e?w=900&h=1100&fit=crop", caption: "Roll 14, set day" },
        { image: "https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=900&h=1100&fit=crop", caption: "Pinned: the cut we almost killed" },
      ]}
      stats={[
        { value: "11 yrs", label: "of quiet making" },
        { value: "60+", label: "brands shipped" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered in a Badge6
headingstringStatement heading; supports inline <strong> for the accent color
descriptionstringSupporting paragraph under the heading
buttonActionLinkSingle CTA rendered as a Button1 with an arrow icon
photosPinnedPhoto[][]Photo cluster source; only the first two are used
statsStatItem[][]Inline stat pairs shown beneath the button
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };
type PinnedPhoto = { image: string; caption: string };
type StatItem = { value: string; label: string };

Behavior notes

More About blocks

View all About
PRO

about50

Chaptered About

A pinned studio image beside a numbered, chaptered about story.

PRO

about51

Beliefs About

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

PRO

about41

Story Rail About

Sticky eyebrow rail beside a story column and an offset captioned image.

PRO

about63

Studio Story Split

Image-led about split with a tall portrait, an offset statement heading, supporting copy, mono studio facts, and a seal CTA.

PRO

about39

Numeral About

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

PRO

about20

Team Photo & List

Wide team photo, member list with avatars, team stats grid, and a culture quote. A rich team showcase layout.