Components/2b3f884a-f969-4605-a1c9-f6f52fc3b2a9

Team Grid

cardfrom Startup Bold
Sign in to Add to Project
Live

AI Usage Rules

Circular avatars with hover effect. Show name, role, and social link.

Code Template

<section className="bg-[#1A1A3E] py-24"><div className="mx-auto max-w-7xl px-6"><h2 className="text-3xl font-bold text-white text-center">{title}</h2><div className="mt-16 grid grid-cols-2 gap-8 md:grid-cols-4">{members}</div></div></section>

Props Schema

PropertyTypeDefaultDescription
titlestring
membersarray
View raw JSON schema
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "members": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "role": {
            "type": "string"
          },
          "avatar": {
            "type": "string"
          },
          "social": {
            "type": "string"
          }
        }
      }
    }
  }
}