A sticky, pinned portrait on the left runs alongside a heading and a numbered, chaptered story on the right, each chapter labeled "Ch. 01", "Ch. 02" and so on, separated by top borders.
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.
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
npx shadcn add "https://ui.beste.co/r/about50?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about50?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about50.tsx, the badge6 and button1 components it uses for the eyebrow label and CTA button, and its dependencies.
The installed file exports about50Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { About50, about50Demo } from "@/components/beste/block/about50";
export default function AboutPage() {
return <About50 {...about50Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { About50 } from "@/components/beste/block/about50";
export default function AboutPage() {
return (
<About50
label="The company"
heading="We build products <strong>worth remembering</strong>."
image={{
src: "https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=800&h=1067&fit=crop",
alt: "Team reviewing printed work on a long table",
}}
chapters={[
{
title: "We started with one stubborn belief",
body: "Good design is never decoration. We left our old jobs to build something better.",
},
{
title: "Strategy before a single pixel",
body: "Every engagement opens with weeks of listening, to founders and to customers.",
},
]}
button={{ label: "Start a chapter with us", href: "https://beste.co" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow badge text above the heading |
heading | string | – | Statement heading; supports inline <strong> for primary-colored highlights |
image | ImageItem | – | Pinned portrait in the left column |
chapters | Chapter[] | [] | Ordered story chapters rendered below the heading |
button | ActionLink | – | CTA rendered as a Button1 after the chapters |
className | string | – | Extra classes for the outer <section> |
type ImageItem = { src: string; alt: string };
type Chapter = { title: string; body: string };
type ActionLink = { label: string; href: string };lg:sticky lg:top-24 lg:self-start on an aspect-[3/4] frame, so on desktop it stays pinned in view while the chapters column scrolls past it; below lg the two columns stack in source order with no sticky behavior.padStart(2, "0")) and rendered as "Ch. 01", "Ch. 02", and so on; there is no id/number field on the Chapter type to override this numbering.border-t with first:mt-0 first:border-t-0 first:pt-0, so the first chapter has no leading divider or top margin while every later one does.about53
About with two subtly rotated, captioned studio photos clustered beside the statement.
about39
About anchored by an oversized numeral with a paragraph and a horizontal image strip.
about63
Image-led about split with a tall portrait, an offset statement heading, supporting copy, mono studio facts, and a seal CTA.
about5
Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.
about23
Two-column layout with company story, stats, and leadership quote on the left, team photo and avatar row on the right.