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.
Centered eyebrow and a large statement heading, followed by a three-up row of icon pillars pairing a circular icon with a title and a one-line description.
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/about59?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about59?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about59.tsx, the badge7 component it uses for the eyebrow label, and its dependencies.
The installed file exports about59Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { About59, about59Demo } from "@/components/beste/block/about59";
export default function Page() {
return <About59 {...about59Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Compass, Infinity, UserCheck } from "lucide-react";
import { About59 } from "@/components/beste/block/about59";
export default function Page() {
return (
<About59
badge={{ label: "The approach" }}
heading="We partner with leadership teams to turn scattered ideas into <strong>one clear brand.</strong>"
features={[
{ icon: Compass, title: "Independent", description: "No agency layers between you and the work." },
{ icon: UserCheck, title: "Senior-led", description: "The people who pitch are the people who build." },
{ icon: Infinity, title: "Built to last", description: "Brands and systems that outlive the launch." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Centered eyebrow rendered in a Badge7 |
heading | string | – | Centered statement heading; supports inline HTML (<strong>) |
features | Feature[] | [] | Icon pillar row |
className | string | – | Extra classes for the outer <section> |
type Feature = { icon: LucideIcon; title: string; description: string };features[].icon is a Lucide icon component reference passed directly, not a string key; callers import the icon (e.g. Compass from lucide-react) and pass the component itself, exactly as the demo does.md:grid-cols-3 and does not adapt to features.length.about58
About section on a soft muted card with a monospace parenthetical eyebrow, a bold studio wordmark, a large centered statement, a logos strip, and a four-column stats band.
about43
An oversized about statement hero above three heterogeneous zones: portrait, values and a CTA with stats.
about38
About where a large heading overlaps a portrait, with a paragraph, CTA and a bottom stat ribbon.
about65
Centered manifesto with a very large multi-line statement heading, muted emphasis phrases, a closing line, and a single CTA.
about39
About anchored by an oversized numeral with a paragraph and a horizontal image strip.
about57
Two centered statements on a dark surface, each with an accent heading, an uppercase paragraph, and a small label beneath.