Most studios hand off the files and move on. We treat every project as if our own name lived on the front door for the next decade. That means we sweat the kerning at 2am, argue about a single radius, and ship nothing we would quietly redesign in private. Ownership is not a stage in our process. It is the only way we know how to work.
We would rather spend an extra week interrogating a layout than ship a draft dressed up as a decision. Pace is a feature, not a constraint.
A brand built by committee tastes like nothing. We bring a clear point of view first, then earn agreement by defending the reasoning behind it.
The micro-interaction, the empty state, the back of the business card. The work people remember is almost always made of things they never requested.
Anything fashionable enough to spike today is forgettable enough to date tomorrow. We design for the version of you that exists three years from now.
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.
Two-column about section: a sticky eyebrow and heading on the left, and a long belief paragraph above a border-separated values list on the right. No image and no CTA.
Upgrade to Pro
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/about61?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about61?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about61.tsx, the badge7 component it uses for the eyebrow label, and its dependencies.
The installed file exports about61Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { About61, about61Demo } from "@/components/beste/block/about61";
export default function Page() {
return <About61 {...about61Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { About61 } from "@/components/beste/block/about61";
export default function Page() {
return (
<About61
badge={{ label: "Our belief" }}
heading="We design like it is <strong>ours to keep.</strong>"
description="Most studios hand off the files and move on. We treat every project as our own."
values={[
{ title: "Slow enough to be sure", description: "Pace is a feature, not a constraint." },
{ title: "Opinion before consensus", description: "We bring a clear point of view first." },
{ title: "Details no one asked for", description: "The work people remember is made of small things." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow text rendered in a Badge7, part of the sticky left column |
heading | string | – | Left-column heading; supports inline HTML (<strong>) |
description | string | – | Long belief paragraph at the top of the right column |
values | About61Value[] | [] | Border-separated list of value entries in the right column |
className | string | – | Extra classes for the outer <section> |
type About61Value = { title: string; description: string };lg:sticky lg:top-24 lg:self-start), so it stays pinned in view while the right column's description and values list scroll past it.first:border-t-0 first:pt-0 removing the border and padding from the first entry, producing a divided list rather than individual bordered cards.about55's numbered Four Parts pattern.lg, the two columns stack in document order (badge/heading first, then description and values) with no sticky behavior.about51
A statement heading over a belief list punctuated by intermittent inline thumbnails.
about57
Two centered statements on a dark surface, each with an accent heading, an uppercase paragraph, and a small label beneath.
about66
Two-column about with a tall image on one side and an eyebrow, heading, description, and 2x2 stats grid on the other.
about5
Side-by-side layout with a tall image on the left and company story, inline stats, and CTAs on the right.