{ "name": "TeamCardFive", "description": "Team section with overlapping portrait cards in responsive flex layout showing centered vertical cards with name and role.", "constraints": { "textRules": { "title": { "required": true, "example": "Meet Our Team", "minChars": 2, "maxChars": 50 }, "description": { "required": true, "example": "The talented people behind our success", "minChars": 5, "maxChars": 250 }, "tag": { "required": false, "example": "Team", "minChars": 2, "maxChars": 30 } }, "teamMemberRules": { "id": { "required": true, "example": "1", "minChars": 1, "maxChars": 20 }, "name": { "required": true, "example": "Sarah Johnson", "minChars": 2, "maxChars": 50, "note": "Team member name displayed at 2xl font-medium, centered with truncate" }, "role": { "required": true, "example": "CEO & Founder", "minChars": 2, "maxChars": 50, "note": "Role/title displayed at base size with 75% opacity, centered with truncate" }, "imageSrc": { "required": false, "example": "/team/sarah.jpg", "note": "Image path for team member photo (aspect-square in card wrapper with p-2, rounded-theme)" }, "videoSrc": { "required": false, "example": "/team/sarah.mp4", "note": "Video path for team member (aspect-square in card wrapper with p-2, rounded-theme)" }, "imageAlt": { "required": false, "example": "Portrait of Sarah Johnson", "note": "Alt text for image (defaults to member name if not provided)" }, "videoAriaLabel": { "required": false, "example": "Video of Sarah Johnson", "note": "ARIA label for video (defaults to member name if not provided)" } }, "itemRules": { "minItems": 2, "maxItems": 12, "recommendedItems": "4-8", "note": "Works best with 4-8 team members. Mobile: 2 per row with overlap. Desktop: up to 4 per row with overlap and wrap support for additional rows." } }, "propsSchema": { "team": "Array<{ id: string, name: string, role: string, imageSrc?: string, videoSrc?: string, imageAlt?: string, videoAriaLabel?: string }>", "animationType": "'none' | 'opacity' | 'slide-up' | 'scale-rotate' | 'blur-reveal' (required)", "title": "string", "titleSegments?": "Array<{ type: 'text', content: string } | { type: 'image', src: string, alt?: string }> - For inline images in title", "description": "string", "textboxLayout": "'default' | 'split' | 'split-actions' | 'split-description' | 'inline-image' (required - 'inline-image' uses titleSegments for rich text with images)", "useInvertedBackground": "'noInvert' | 'invertDefault'", "tag?": "string", "tagIcon?": "LucideIcon", "buttons?": "Array<{text: string, onClick?: () => void, href?: string}>", "ariaLabel?": "string (default: 'Team section')", "className?": "string" }, "usageExample": "", "do": [ "Use for team pages", "Use for staff directories", "Requires team[]", "Requires titleSegments?[]", "Requires buttons?[]" ], "dont": [ "Do not use more than 4 items", "Do not use less than 2 items", "Do not use more than 12 items" ], "editRules": { "textOnly": true, "layoutLocked": true, "styleLocked": true } }