Overlap Heading About

About where a large heading overlaps a portrait, with a paragraph, CTA and a bottom stat ribbon.

PRO

About38: Overlap Heading About

About section where a large sticky heading and a portrait deliberately collide: the copy column pins in place while the negatively-margined portrait tucks under its final words, closing with a bottom stat ribbon split into thirds.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About38, about38Demo } from "@/components/beste/block/about38";

export default function Page() {
  return <About38 {...about38Demo} />;
}

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

tsx
import { About38 } from "@/components/beste/block/about38";

export default function Page() {
  return (
    <About38
      label="The Studio"
      heading="We design brands that hold their nerve when the <strong>spotlight</strong> hits."
      description="Polaris is a sixteen-person creative studio working out of a reclaimed boiler room."
      button={{ label: "Read the studio file", href: "https://beste.co" }}
      image={{
        src: "https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1000&h=1250&fit=crop",
        alt: "Designers reviewing printed layouts",
      }}
      stats={[
        { value: "16", label: "People, one floor, zero account managers." },
        { value: "21yr", label: "Of putting craft ahead of the brief." },
        { value: "240+", label: "Identities shipped and still standing." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow label rendered inside the badge
headingstringRendered via dangerouslySetInnerHTML; <strong> spans render text-primary
descriptionstringParagraph below the heading
buttonActionLinkCTA below the description
imageImageItemPortrait that overlaps the heading column
statsStatItem[][]Bottom ribbon split into thirds
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };
type ImageItem = { src: string; alt: string };
type StatItem = { value: string; label: string };

Behavior notes

More About blocks

View all About
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

about39

Numeral About

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

PRO

about34

About Stats Grid

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

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.