Staaarter

Studio Team

A studio team grid of member portraits with names and roles, captioned below each photo rather than overlaid on it.

By Staaarter Team
Agency
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its media-slot dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/studio-team.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/agency/agency14.tsx instead.

Usage

The file also exports agency14Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.

import { Agency14, agency14Demo } from "@/components/blocks/agency/agency14";

export default function Page() {
  return <Agency14 {...agency14Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringundefinedSmall uppercase label above the heading.
headingstringnoneSection heading, e.g. "Studio team".
descriptionstringundefinedOptional supporting paragraph under the heading.
teamTeamMember[]noneTeam members rendered in a responsive grid (2 columns on mobile, up to 4 on large screens).
classNamestringnoneExtra classes for the outer section element.

Types

type TeamMember = {
  name: string;
  role: string;
  photo: MediaSlotImage;
};

Behavior notes

  • Name and role are rendered as plain caption text below each photo, not as an overlay on hover, so they are always visible including on touch devices.
  • Purely presentational grid with no click-through to individual profile pages or social links.