Two-column about with a tall image on one side and an eyebrow, heading, description, and 2x2 stats grid on the other.
Two-column about section with a tall portrait image on one side and an eyebrow badge, heading, description, and a 2x2 grid of large stat figures on the other. Built for studios that want to back up an about statement with a handful of hard numbers.
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/about66?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about66?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about66.tsx, the badge7 component it uses for the eyebrow badge, and its dependencies.
The installed file exports about66Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { About66, about66Demo } from "@/components/beste/block/about66";
export default function AboutPage() {
return <About66 {...about66Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { About66 } from "@/components/beste/block/about66";
export default function AboutPage() {
return (
<About66
badge={{ label: "By the numbers" }}
heading="Measured in <strong>outcomes</strong>, not output."
description="Every engagement is scoped to a result we can defend in a boardroom."
stats={[
{ value: "9yrs", title: "Compounding our craft inside one studio" },
{ value: "40+", title: "Brands we have carried from zero to launch" },
]}
image={{
src: "https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=900&h=1125&fit=crop",
alt: "Studio interior with a long shared worktable",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow badge above the heading |
heading | string | – | Section heading; supports inline <strong> for muted emphasis |
description | string | – | Supporting paragraph under the heading |
stats | About66Stat[] | [] | Figures rendered in the 2-column stat grid |
image | About66Image | – | Portrait photo in the left column |
className | string | – | Extra classes for the outer <section> |
type Badge = { label: string };
type About66Stat = { value: string; title: string };
type About66Image = { src: string; alt: string };lg and up; there is no displayPosition prop to flip the sides.stats uses a fixed sm:grid-cols-2 grid regardless of item count, so it is designed around exactly four entries (the demo's 2x2 layout); a third or fifth stat wraps into a new row rather than reflowing to three columns.border-t row with the value at text-4xl/text-5xl bold above a muted description line, not a boxed card.text-6xl at lg, larger than the equivalent heading in about63, since this variant has no facts list competing for vertical space.aspect-[4/5]; supply a portrait-oriented photo to avoid letterboxing from object-cover.about34
About section: eyebrow label, two-tone heading, two portraits beside a 2x2 stats grid.
about8
Four-column stats grid with large numbers, titles, and supporting descriptions. Perfect for impact and results sections.
about23
Two-column layout with company story, stats, and leadership quote on the left, team photo and avatar row on the right.
about1
Two-column about section with mission statement, company stats, and team member grid. Perfect for company pages and landing sections.
about33
About section with an eyebrow label and read-more action on the left, a bold heading with two side-by-side images on the right, and a four-column stats band below.
about68
A team section with an eyebrow over a hairline rule, a two-column heading, and a grid of portrait cards each with a name and role.