{ "name": "FeatureCardSix", "description": "Timeline-based feature section with scroll-triggered stacking animations and numbered step cards.", "details": "Use for process flows, roadmaps, or sequential feature presentations. Each card displays a numbered step badge, title, description, and media (image or video) in a two-column layout. As you scroll, cards stack on top of each other with fade animations. The timeline layout provides a clear visual progression through steps or stages. No grid/carousel modes - uses fixed timeline stacking layout with GSAP ScrollTrigger. Optional header with title, description, tag, and buttons. Header supports centered or split textbox layout (split: tag + title + description left, buttons right; split-actions: tag + title left, buttons only right; split-description: tag + title left, description only right).", "constraints": { "textRules": { "title": { "required": true, "example": "Our Process", "minChars": 2, "maxChars": 35 }, "description": { "required": true, "example": "Discover how we bring ideas to life", "minChars": 5, "maxChars": 250 }, "tag": { "required": false, "example": "Process", "minChars": 2, "maxChars": 30 } }, "featureCardRules": { "title": { "required": true, "example": "Research & Planning", "minChars": 2, "maxChars": 50 }, "description": { "required": true, "example": "Understanding user needs, market trends, and project requirements", "minChars": 10, "maxChars": 300 } }, "mediaRules": { "imageSrc": { "required": false, "example": "/step1.jpg", "note": "Either imageSrc or videoSrc required per card Either imageSrc or videoSrc should be provided. Image is recommended if no videoSrc." }, "videoSrc": { "required": false, "example": "/step1.mp4", "note": "Either imageSrc or videoSrc required per card" }, "imageAlt": { "required": false, "example": "Research phase illustration", "note": "Falls back to feature title if not provided" }, "videoAriaLabel": { "required": false, "example": "Research phase video", "note": "Falls back to feature title if not provided" } } }, "propsSchema": { "features": "Array<{ title: string, description: string, buttons?: ButtonConfig[] } & ({ imageSrc: string, imageAlt?: string } | { videoSrc: string, videoAriaLabel?: string })>", "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: 'Feature section')", "className?": "string", "containerClassName?": "string", "textBoxTitleClassName?": "string", "titleImageWrapperClassName?": "string - For styling image wrapper in inline-image layout", "titleImageClassName?": "string - For styling images in inline-image layout", "textBoxDescriptionClassName?": "string", "textBoxClassName?": "string", "textBoxTagClassName?": "string", "textBoxButtonContainerClassName?": "string", "textBoxButtonClassName?": "string", "textBoxButtonTextClassName?": "string", "cardContentClassName?": "string", "stepNumberClassName?": "string", "cardTitleClassName?": "string", "cardDescriptionClassName?": "string", "imageContainerClassName?": "string", "imageClassName?": "string", "cardButtonClassName?": "string", "cardButtonTextClassName?": "string" }, "usageExample": "", "do": [ "Use for process flows", "Use for roadmaps", "Use for step-by-step explanation", "Use for feature showcases", "Use for capability displays", "Requires features[]", "Requires titleSegments?[]", "Requires buttons?[]" ], "dont": [ "Do not use non-sequential content", "Do not use single item" ], "editRules": { "textOnly": true, "layoutLocked": true, "styleLocked": true } }