Team Section
Team member grid with avatar, role, bio, and social links
Quick Preview
Meet the team
The people behind the product.
Sarah Johnson
CEO & Co-founder
Visionary leader with 15 years of experience building developer tools.
Alex Chen
Head of Engineering
Full-stack engineer passionate about scalable systems and open source.
Maya Patel
Lead Designer
Crafts beautiful, accessible interfaces that users love.
Carlos Rivera
Developer Advocate
Bridges the gap between product and community through clear communication.
Priya Nair
Product Manager
Turns user feedback into features that matter.
James Park
DevOps Engineer
Ensures zero-downtime deploys and rock-solid infrastructure.
Installation
// Copy the component fromsrc/components/sections/TeamSection.tsx
Usage
import { TeamSection } from '@/components/sections/TeamSection'const members = [{ name: 'Sarah Johnson', role: 'CEO', initials: 'SJ', bio: '15 years building dev tools.' },{ name: 'Alex Chen', role: 'CTO', initials: 'AC', bio: 'Open-source enthusiast.' },]<TeamSection title="Meet the team" members={members} columns={3} />
Variants
4 Columns
4-column grid
Meet the team
Sarah Johnson
CEO & Co-founder
Visionary leader with 15 years of experience building developer tools.
Alex Chen
Head of Engineering
Full-stack engineer passionate about scalable systems and open source.
Maya Patel
Lead Designer
Crafts beautiful, accessible interfaces that users love.
Carlos Rivera
Developer Advocate
Bridges the gap between product and community through clear communication.
Priya Nair
Product Manager
Turns user feedback into features that matter.
James Park
DevOps Engineer
Ensures zero-downtime deploys and rock-solid infrastructure.
2 Columns with bio
2-column grid with bio text
Meet the team
The people behind the product.
Sarah Johnson
CEO & Co-founder
Visionary leader with 15 years of experience building developer tools.
Alex Chen
Head of Engineering
Full-stack engineer passionate about scalable systems and open source.
Maya Patel
Lead Designer
Crafts beautiful, accessible interfaces that users love.
Carlos Rivera
Developer Advocate
Bridges the gap between product and community through clear communication.
Priya Nair
Product Manager
Turns user feedback into features that matter.
James Park
DevOps Engineer
Ensures zero-downtime deploys and rock-solid infrastructure.
With Social Links
const members = [{name: 'Alex Chen',role: 'Head of Engineering',initials: 'AC',twitter: 'https://x.com/alexchen',linkedin: 'https://linkedin.com/in/alexchen',github: 'https://github.com/alexchen',},]
Prompt Preview
Copy a prompt that recreates this UI
Paste this into your AI coding assistant to generate code that closely matches the reference, including color, size, shape, typography, spacing, and polish.
Copy-ready AI prompt
Starts from the current visual reference and project constraints.
Tweak only product-specific copy or data after the first generation pass.
Props
| Prop | Type | Default | Description |
|---|---|---|---|
title | string | "Meet the team" | Section heading |
subtitle | string | - | Section sub-heading |
members | TeamMember[] | - | Array of team member objects |
columns | 2 | 3 | 4 | 3 | Number of columns in the grid |
className | string | - | Additional CSS classes |
Features
- โInitials fallback avatar with colour rotation
- โOptional image avatar support
- โSocial links (Twitter/X, LinkedIn, GitHub)
- โ2 / 3 / 4 column grid
- โServer Component