We are a creative studio working at the seam of strategy and design. Every engagement starts with a point of view, not a template, and ends with work that can defend itself in a noisy market.
Beautiful work that says nothing is decoration. We pressure-test the idea until it holds, then we make it look inevitable.
We resist the urge to add. A focused brand outperforms a busy one, so we cut until only the load-bearing ideas remain.
Strategy lives or dies in the artifact. We turn positioning into pages, products, and pixels you can actually react to.
Our systems outlive the engagement. We document the why behind every choice so your team can extend the work without us.
There is no neutral design decision. We name what each direction costs you and recommend the one we would ship ourselves.
Sticky studio intro with a portrait beside a stack of numbered principles.
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.
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/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.