Team Cards with Bios
Three-column grid of team member cards with avatars, roles, and short bios. Great for leadership and team pages.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its avatar, avatar-initials dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/team-cards-with-bios.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/about/about7.tsx instead.
Usage
The file also exports about7Demo, 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 { About7, about7Demo } from "@/components/blocks/about/about7"; export default function Page() { return <About7 {...about7Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | none | Section heading. |
| description | string | undefined | Section intro text. |
| team | TeamMember[] | none | Team cards, each with a required bio. |
| className | string | none | Extra classes for the outer section element. |
Types
type TeamMember = { name: string; role: string; bio: string; avatar?: { src: string; alt: string }; };
Behavior notes
- Unlike About1 and About4, bio is required here rather than optional, since the card layout is built around always showing a short bio beneath the role.
- Cards render in a bordered, padded box rather than a shadow-based Card component, matching the flatter visual style used across every About block on this site.
- The grid is sm:grid-cols-2 lg:grid-cols-3, so an odd number of members (e.g. 5) leaves a visible gap on the last row rather than centering it.
More About Blocks
View all →team-mission
Team & Mission
Two-column about section with mission statement, company stats, and team member grid.
values-with-team-photo
Values with Team Photo
Full-width photo with a three-column values grid below.
timeline-milestones
Timeline & Milestones
Company stats on the left and a vertical timeline of milestones on the right.
founder-quote-team
Founder Quote & Team
Founder blockquote with avatar, followed by a horizontal team member row.
image-text-split
Image & Text Split
Tall image on the left, company story, inline stats, and CTAs on the right.
numbered-principles
Numbered Principles
Heading on the left and numbered company principles on the right.