From 5be211715f9aba900ada4005212edd593b0f21a6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 21:18:54 +0000 Subject: [PATCH] Switch to version 2: added registry/components/TestimonialCardOne.json --- registry/components/TestimonialCardOne.json | 136 ++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 registry/components/TestimonialCardOne.json diff --git a/registry/components/TestimonialCardOne.json b/registry/components/TestimonialCardOne.json new file mode 100644 index 0000000..9a869d8 --- /dev/null +++ b/registry/components/TestimonialCardOne.json @@ -0,0 +1,136 @@ +{ + "name": "TestimonialCardOne", + "description": "Testimonial card with image background, star rating, name, role, and company overlay.", + "details": "Use for displaying customer testimonials with visual impact. Layout: Full Image Background → Bottom Overlay Card (Star Rating → Name → Role + Company). Card has fixed height (h-100, 2xl:h-120) with image fill. Overlay uses card styling with rounded corners. Star rating displayed at top using filled Star icons. Name, role, and company stacked vertically with tight line-height. All core fields required for visual consistency. Best for testimonial sections, reviews, or social proof displays. Automatically switches between grid (1-4 items) and carousel (5+ items). Optional header with title, description, tag, and buttons.", + "constraints": { + "textRules": { + "title": { + "required": true, + "example": "What Our Customers Say", + "minChars": 2, + "maxChars": 50 + }, + "description": { + "required": true, + "example": "Real feedback from our valued customers", + "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": "Alisa Hester", + "minChars": 2, + "maxChars": 50, + "note": "Customer name displayed in overlay" + }, + "role": { + "required": true, + "example": "PM, Hourglass", + "minChars": 2, + "maxChars": 50, + "note": "Customer role/position" + }, + "company": { + "required": true, + "example": "Web Design Agency", + "minChars": 2, + "maxChars": 50, + "note": "Customer company name" + }, + "rating": { + "required": true, + "example": 5, + "min": 1, + "max": 5, + "note": "Star rating (1-5 stars)" + }, + "imageSrc": { + "required": false, + "example": "/testimonials/alisa.jpg", + "note": "Image path for customer photo Either imageSrc or videoSrc should be provided. Image is recommended if no videoSrc." + }, + "videoSrc": { + "required": false, + "example": "/testimonials/alisa.mp4", + "note": "Video path for customer (alternative to imageSrc)" + }, + "imageAlt": { + "required": false, + "example": "Portrait of Alisa Hester", + "note": "Alt text for image (defaults to customer name if not provided)" + }, + "videoAriaLabel": { + "required": false, + "example": "Video of Alisa Hester", + "note": "Aria label for video (defaults to customer name if not provided)" + } + } + }, + "propsSchema": { + "testimonials": "Array<{ id: string, name: string, role: string, company: string, rating: number, imageSrc?: string, videoSrc?: string, imageAlt?: string, videoAriaLabel?: string }>", + "carouselMode?": "'auto' | 'buttons' (default: 'buttons')", + "uniformGridCustomHeightClasses?": "string (default: 'min-h-95 2xl:min-h-105')", + "gridVariant": "'uniform-all-items-equal' | 'bento-grid' | 'bento-grid-inverted' | 'two-columns-alternating-heights' | 'asymmetric-60-wide-40-narrow' | 'three-columns-all-equal-width' | 'four-items-2x2-equal-grid' | 'one-large-right-three-stacked-left' | 'items-top-row-full-width-bottom' | 'full-width-top-items-bottom-row' | 'one-large-left-three-stacked-right' (required)", + "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", + "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'", + "textboxLayout": "'default' | 'split' | 'split-actions' | 'split-description' | 'inline-image' (required - 'inline-image' uses titleSegments for rich text with images)", + "useInvertedBackground": "boolean", + "ariaLabel?": "string (default: 'Testimonials section')", + "className?": "string", + "containerClassName?": "string", + "cardClassName?": "string", + "textBoxTitleClassName?": "string", + "textBoxTitleImageWrapperClassName?": "string - For styling image wrapper in inline-image layout", + "textBoxTitleImageClassName?": "string - For styling images in inline-image layout", + "textBoxDescriptionClassName?": "string", + "imageClassName?": "string", + "overlayClassName?": "string", + "ratingClassName?": "string", + "nameClassName?": "string", + "roleClassName?": "string", + "companyClassName?": "string", + "gridClassName?": "string", + "carouselClassName?": "string", + "controlsClassName?": "string", + "textBoxClassName?": "string", + "textBoxTagClassName?": "string", + "textBoxButtonContainerClassName?": "string", + "textBoxButtonClassName?": "string", + "textBoxButtonTextClassName?": "string" + }, + "usageExample": "", + "do": [ + "Use for social proof", + "Use for customer reviews", + "Requires testimonials[]", + "Requires titleSegments?[]", + "Requires buttons?[]" + ], + "dont": [], + "editRules": { + "textOnly": true, + "layoutLocked": true, + "styleLocked": true + } +}