{m.photo_url ? (
) : (
{m.name.charAt(0)}
)}
import Image from "next/image"; import { LinkedinIcon } from "@/components/social-icons"; import type { TeamMemberRow } from "@/lib/types"; export function TeamGrid({ members }: { members: TeamMemberRow[] }) { if (members.length === 0) return null; return (