Studio Team

A studio team grid of member portraits with names and roles.

PRO

Agency14: Studio Team

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.

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.

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/agency14?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" },
      }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered in Badge6 above the heading
headingstringSection heading
introstringSection intro, rendered with dangerouslySetInnerHTML so it accepts inline HTML
membersTeamMember[][]Portrait cards in the grid
hiringHiringCalloutOptional closing row with a CTA; the whole block is skipped when omitted
classNamestringExtra classes for the outer <section>
ts
type TeamMember = {
  name: string;
  role: string;
  image: { src: string; alt: string };
};

type HiringCallout = {
  text: string;
  cta: { label: string; href: string };
};

Behavior notes

More Agency blocks

View all Agency
PRO

agency16

Studio At A Glance

Studio overview pairing facts, copy and highlight stats with a clean studio image.

PRO

agency15

Awards List

Editorial list of studio awards by year with project and recognition details.

PRO

agency13

How We Think

Sticky studio intro with a portrait beside a stack of numbered principles.

PRO

agency10

Case Study Hero

A case study header with project metadata grid, service tags, and featured image. Perfect for agency portfolio pages showcasing client work details.

PRO

agency18

Studio Ethos

A bold ethos statement beside a list of concrete studio commitments.

PRO

agency11

Studio Manifesto

Oversized editorial manifesto statement with emphasized phrases, principle chips and a founder signature.