Sticky studio-intro layout: a left column with a badge, heading, lead paragraph, and portrait image that stays pinned while a right column lists numbered principles, each with a title and description separated by hairline rules.
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/agency13?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/agency13?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/agency13.tsx, the badge6 component it uses for the eyebrow label, and its dependencies.
The installed file exports agency13Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { Agency13, agency13Demo } from "@/components/beste/block/agency13";
export default function AboutPage() {
return <Agency13 {...agency13Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Agency13 } from "@/components/beste/block/agency13";
export default function AboutPage() {
return (
<Agency13
label="How We Think"
heading="We build brands the way a studio builds a craft."
lead="Every engagement starts with a point of view, not a template."
image={{
src: "https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=900&h=675&fit=crop",
alt: "Studio team gathered around a workspace",
}}
principles={[
{
title: "Clarity before craft",
description: "We pressure-test the idea until it holds, then make it look inevitable.",
},
{
title: "Fewer, sharper decisions",
description: "A focused brand outperforms a busy one.",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow label rendered via Badge6 |
heading | string | – | Heading in the left column; plain text, no <strong> handling |
lead | string | – | Intro paragraph under the heading |
image | ImageItem | – | Portrait image under the lead paragraph |
principles | Principle[] | [] | Numbered rows in the right column |
className | string | – | Extra classes for the outer <section> |
type ImageItem = { src: string; alt: string };
type Principle = { title: string; description: string };lg:grid-cols-[0.85fr_1.15fr] split; the left column is lg:sticky lg:top-24 self-start, so it stays pinned in the viewport while the right column's principle list scrolls past it.heading is rendered as plain text, not through dangerouslySetInnerHTML, so <strong> markup would not render as emphasis here.(01), (02), ...) via String(index + 1).padStart(2, "0"), wrapped in parentheses and colored text-primary, not stored as data on the item.border-t, except the first row, which explicitly removes its top border and top padding (first:border-t-0 first:pt-0) so it sits flush with the top of the column.aspect-[4/3], not beside the principles list.agency11
Oversized editorial manifesto statement with emphasized phrases, principle chips and a founder signature.
agency16
Studio overview pairing facts, copy and highlight stats with a clean studio image.
agency17
Interactive principle list that swaps a detail panel with image as each is hovered.