{ "name": "TestimonialCardThirteen", "description": "Testimonial cards with star ratings or quote icon, testimonial text, and author details.", "details": "Use for displaying customer reviews with either star ratings or a quote icon. Set showRating={true} for star ratings (5 stars, filled based on rating value) or showRating={false} for a single quote icon. Layout: Star Rating/Quote Icon → Testimonial Text → Author Info (image/icon, name, handle). Cards are displayed in a grid or carousel layout. Best for customer reviews, product feedback, or service testimonials.", "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": 300 }, "tag": { "required": false, "example": "Testimonials", "minChars": 2, "maxChars": 30 } }, "testimonialRules": { "id": { "required": true, "example": "1", "note": "Unique identifier for the testimonial" }, "name": { "required": true, "example": "Sarah Johnson", "minChars": 2, "maxChars": 50 }, "handle": { "required": true, "example": "@sarahj", "minChars": 2, "maxChars": 30 }, "testimonial": { "required": true, "example": "Amazing product that transformed our workflow!", "minChars": 10, "maxChars": 500 }, "rating": { "required": true, "example": 5, "note": "Number from 1-5 indicating star rating" }, "imageSrc": { "required": false, "example": "/testimonials/sarah.jpg", "note": "Author avatar image (either imageSrc or icon required)" }, "icon": { "required": false, "example": "Quote", "note": "LucideIcon for author avatar (either imageSrc or icon required)" } } }, "propsSchema": { "testimonials": "Array<{ id: string, name: string, handle: string, testimonial: string, rating: number, imageSrc?: string, imageAlt?: string, icon?: LucideIcon }>", "showRating": "boolean - true for star ratings, false for quote icon (required)", "carouselMode?": "'auto' | 'buttons' (default: 'buttons')", "uniformGridCustomHeightClasses?": "string (default: 'min-h-none')", "animationType": "'none' | 'opacity' | 'slide-up' | 'scale-rotate' | 'blur-reveal' | 'depth-3d'", "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)", "useInvertedBackground": "boolean", "tag?": "string", "tagIcon?": "LucideIcon", "tagAnimation?": "'none' | 'opacity' | 'slide-up' | 'blur-reveal'", "buttons?": "Array<{text: string, onClick?: () => void, href?: string}>", "buttonAnimation?": "'none' | 'opacity' | 'slide-up' | 'blur-reveal'", "ariaLabel?": "string (default: 'Testimonials section')", "className?": "string", "containerClassName?": "string", "cardClassName?": "string", "textBoxClassName?": "string", "textBoxTitleClassName?": "string", "textBoxTitleImageWrapperClassName?": "string", "textBoxTitleImageClassName?": "string", "textBoxDescriptionClassName?": "string", "textBoxTagClassName?": "string", "textBoxButtonContainerClassName?": "string", "textBoxButtonClassName?": "string", "textBoxButtonTextClassName?": "string", "imageWrapperClassName?": "string", "imageClassName?": "string", "iconClassName?": "string", "nameClassName?": "string", "handleClassName?": "string", "testimonialClassName?": "string", "ratingClassName?": "string", "contentWrapperClassName?": "string", "gridClassName?": "string", "carouselClassName?": "string", "controlsClassName?": "string" }, "usageExample": "", "do": [ "Use for social proof", "Use for customer reviews", "Use for product catalogs", "Use for e-commerce", "Requires testimonials[]", "Requires titleSegments?[]", "Requires buttons?[]" ], "dont": [ "Do not use multiple items" ], "editRules": { "textOnly": true, "layoutLocked": true, "styleLocked": true } }