Two centered statements on a dark surface, each with an accent heading, an uppercase paragraph, and a small label beneath.
Two centered statements on a fixed dark surface, each pairing an accent-colored heading with a body paragraph and a small tracked label underneath. No image, button, or other interactive element.
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/about57?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about57?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about57.tsx and its dependencies.
The installed file exports about57Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { About57, about57Demo } from "@/components/beste/block/about57";
export default function Page() {
return <About57 {...about57Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { About57 } from "@/components/beste/block/about57";
export default function Page() {
return (
<About57
statements={[
{
heading: "We believe",
body: "Good work earns trust before it earns attention.",
label: "Our Values",
},
{
heading: "We build",
body: "Momentum is part of the product.",
label: "Our Mission",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
statements | StatementItem[] | [] | Statement entries, each rendered as a centered column |
className | string | – | Extra classes for the outer <section> |
type StatementItem = { heading: string; body: string; label: string };md:grid-cols-2 regardless of statements.length; passing more than two entries wraps to a new row instead of adjusting the column count.bg-foreground/text-background), so it renders as a deliberately dark band in both light and dark site themes rather than following the ambient theme.statement.heading is colored with text-primary; body and label are dimmed via opacity modifiers on text-background (/80 and /50 respectively), not separate muted tokens.about61
Two-column about section with a sticky eyebrow and big heading on the left and a long belief paragraph above a border-separated values list on the right.
about1
Two-column about section with mission statement, company stats, and team member grid. Perfect for company pages and landing sections.
about65
Centered manifesto with a very large multi-line statement heading, muted emphasis phrases, a closing line, and a single CTA.
about16
Three-column cards for vision, mission, and values with labeled headers. Clean editorial layout for company positioning.
about9
Centered mission statement with a logo strip of trusted partners below. Ideal for building credibility on landing and about pages.
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.