Grid of team member cards with headshot, name, role, and optional social links. Suitable for about pages and team directories.
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
{members.map((m) => (
<div key={m.name} className="text-center">
<div className="w-24 h-24 mx-auto mb-4 rounded-full overflow-hidden bg-muted">
<Image src={m.photo} alt={m.name} width={96} height={96} className="object-cover" />
</div>
<h3 className="font-semibold">{m.name}</h3>
<p className="text-sm text-muted-foreground">{m.role}</p>
</div>
))}
</div>Card with circular headshot above name and role
Horizontal layout with small avatar, name, and role inline