Heading Hero About

An oversized about statement hero above three heterogeneous zones: portrait, values and a CTA with stats.

PRO

About43: Heading Hero About

An oversized about statement fills the top of the section on its own, then the page breaks into three unrelated zones below a divider: a portrait photo, a bulleted list of values, and a CTA paragraph stacked over a short stats list. The heading supports inline <strong> highlighting rendered in the primary color.

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

Base UI flavor

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

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

Quick start

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

tsx
import { About43, about43Demo } from "@/components/beste/block/about43";

export default function AboutPage() {
  return <About43 {...about43Demo} />;
}

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

tsx
import { About43 } from "@/components/beste/block/about43";

export default function AboutPage() {
  return (
    <About43
      label="Inside the studio"
      heading="We build products people <strong>actually finish setting up</strong>."
      image={{
        src: "https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=900&h=1125&fit=crop",
        alt: "Team reviewing work around a table",
      }}
      valuesTitle="What we stand for"
      values={["Clarity over cleverness.", "Ship small, ship often.", "No surprise invoices."]}
      ctaText="Tell us what you are trying to build. We will tell you if we can help."
      button={{ label: "Start a project", href: "https://beste.co" }}
      stats={[
        { value: "8 yrs", label: "In business." },
        { value: "150+", label: "Products shipped." },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow badge text above the heading
headingstringHero statement; supports inline <strong> for primary-colored highlights
imageImageItemPortrait shown in the first of the three lower zones
valuesTitlestringSmall uppercase heading above the values list
valuesstring[][]Bulleted value statements, each prefixed with a square dot marker
ctaTextstringParagraph shown above the button in the third zone
buttonActionLinkCTA rendered as a Button1 with an arrow icon
statsStatItem[][]Short stat list under the CTA, separated by a top border
classNamestringExtra classes for the outer <section>
ts
type ImageItem = { src: string; alt: string };
type ActionLink = { label: string; href: string };
type StatItem = { value: string; label: string };

Behavior notes

More About blocks

View all About
PRO

about38

Overlap Heading About

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

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

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

about51

Beliefs About

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

PRO

about11

Hero Banner with Avatars

Wide hero image with gradient overlay text, inline stats, and a stacked avatar strip of team members.