An oversized about statement hero above three heterogeneous zones: portrait, values and a CTA with stats.
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.
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/about43?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow badge text above the heading |
heading | string | – | Hero statement; supports inline <strong> for primary-colored highlights |
image | ImageItem | – | Portrait shown in the first of the three lower zones |
valuesTitle | string | – | Small uppercase heading above the values list |
values | string[] | [] | Bulleted value statements, each prefixed with a square dot marker |
ctaText | string | – | Paragraph shown above the button in the third zone |
button | ActionLink | – | CTA rendered as a Button1 with an arrow icon |
stats | StatItem[] | [] | Short stat list under the CTA, separated by a top border |
className | string | – | Extra classes for the outer <section> |
type ImageItem = { src: string; alt: string };
type ActionLink = { label: string; href: string };
type StatItem = { value: string; label: string };dangerouslySetInnerHTML, so any <strong> tags inside the string get the primary text color; plain text renders unstyled.border-t divides the statement from a md:grid-cols-3 row: portrait, values list, and CTA/stats column. On mobile these three zones stack vertically in source order.size-2 bg-primary) rather than a bullet glyph, and the list uses divide-y between rows instead of per-item spacing.stats is non-empty; with an empty array the CTA column shows only the CTA text and button.aspect-[4/5]) regardless of the source image's own proportions, cropped with object-cover.about38
About where a large heading overlaps a portrait, with a paragraph, CTA and a bottom stat ribbon.
about66
Two-column about with a tall image on one side and an eyebrow, heading, description, and 2x2 stats grid on the other.
about59
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.
about39
About anchored by an oversized numeral with a paragraph and a horizontal image strip.
about51
A statement heading over a belief list punctuated by intermittent inline thumbnails.
about11
Wide hero image with gradient overlay text, inline stats, and a stacked avatar strip of team members.