Studio team grid that pairs a cropped portrait with a name and role for every member, closing with an optional hiring callout row. The intro paragraph is rendered as HTML, so it can carry inline emphasis or entities straight from the CMS.
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/agency14?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/agency14?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/agency14.tsx, the badge6 component it uses for the section eyebrow, the button1 component it uses for the hiring callout's CTA, and its dependencies.
The installed file exports agency14Demo alongside the block: the exact props behind the preview above. Spread it to get a working team section in one line.
import { Agency14, agency14Demo } from "@/components/beste/block/agency14";
export default function AboutPage() {
return <Agency14 {...agency14Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Agency14 } from "@/components/beste/block/agency14";
export default function AboutPage() {
return (
<Agency14
label="The team"
heading="The people behind the work"
intro="We are a small, senior studio of designers and engineers."
members={[
{
name: "Elena Marsh",
role: "Founder & Creative Director",
image: {
src: "https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=900&h=1125&fit=crop",
alt: "Elena Marsh, Founder and Creative Director",
},
},
{
name: "Theo Vance",
role: "Design Lead",
image: {
src: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=900&h=1125&fit=crop",
alt: "Theo Vance, Design Lead",
},
},
]}
hiring={{
text: "We are always looking for sharp, kind people to build alongside.",
cta: { label: "See open roles", href: "https://beste.co" },
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow text rendered in Badge6 above the heading |
heading | string | – | Section heading |
intro | string | – | Section intro, rendered with dangerouslySetInnerHTML so it accepts inline HTML |
members | TeamMember[] | [] | Portrait cards in the grid |
hiring | HiringCallout | – | Optional closing row with a CTA; the whole block is skipped when omitted |
className | string | – | Extra classes for the outer <section> |
type TeamMember = {
name: string;
role: string;
image: { src: string; alt: string };
};
type HiringCallout = {
text: string;
cta: { label: string; href: string };
};intro is injected with dangerouslySetInnerHTML, so the demo data uses an HTML entity (—) for its dash rather than a literal character; any inline markup you pass renders as HTML.group/agency14, scale-105, 500ms ease-out).lg up; it does not recompute column count from members.length.hiring is passed. Its CTA is a Button1 with tone="primary", using the asChild pattern to wrap a plain Link.agency16
Studio overview pairing facts, copy and highlight stats with a clean studio image.
agency10
A case study header with project metadata grid, service tags, and featured image. Perfect for agency portfolio pages showcasing client work details.
agency11
Oversized editorial manifesto statement with emphasized phrases, principle chips and a founder signature.