{ "name": "TestimonialCardSix", "description": "Dual auto-scrolling marquee testimonial section with reversed testimonial cards moving in opposite directions.", "constraints": { "textRules": { "title": { "required": true, "example": "What Our Clients Say", "minChars": 2, "maxChars": 50 }, "description": { "required": true, "example": "Hear from those who've experienced our work", "minChars": 5, "maxChars": 250 }, "tag": { "required": false, "example": "Testimonials", "minChars": 2, "maxChars": 30 } }, "testimonialRules": { "id": { "required": true, "example": "1", "minChars": 1, "maxChars": 20 }, "name": { "required": true, "example": "Sarah Johnson", "minChars": 2, "maxChars": 50 }, "handle": { "required": true, "example": "@sarahj", "minChars": 2, "maxChars": 50, "note": "Social media handle or role/company" }, "testimonial": { "required": true, "example": "This component library has transformed our development workflow. The quality and attention to detail is exceptional.", "minChars": 20, "maxChars": 200, "note": "Testimonial text automatically clamped to 2 lines for consistent card heights" }, "imageSrc": { "required": false, "example": "/avatar.jpg", "note": "Avatar image shown in TestimonialAuthor (aspect-square)" }, "imageAlt": { "required": false, "example": "Sarah Johnson", "note": "Alt text for avatar image" }, "icon": { "required": false, "example": "Quote", "note": "LucideIcon component to display if no imageSrc provided (defaults to Quote icon)" } }, "itemRules": { "minItems": 6, "maxItems": 20, "recommendedItems": "8-12", "note": "Works best with 8-12 testimonials. Continuously scrolls with top and bottom marquees in opposite directions." } }, "propsSchema": { "testimonials": "Array<{ id: string, name: string, handle: string, testimonial: string, imageSrc?: string, imageAlt?: string, icon?: LucideIcon }>", "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}>", "speed?": "number (default: 40)", "topMarqueeDirection?": "'left' | 'right' (default: 'left')", "ariaLabel?": "string (default: 'Testimonials section')", "className?": "string" }, "usageExample": "", "do": [ "Use for social proof", "Use for customer reviews", "Requires testimonials[]", "Requires titleSegments?[]", "Requires buttons?[]" ], "dont": [ "Do not use less than 6 items", "Do not use more than 20 items" ], "editRules": { "textOnly": true, "layoutLocked": true, "styleLocked": true } }