What problem does it solve? Building custom components for Wix sites requires coordinating four tightly coupled files (manifest.json, component.tsx, style.css, types.ts) whose selectors, data types, and props must stay perfectly synchronized with the Wix Editor contract. This Skill encodes that contract so components integrate correctly with the visual editor on the first attempt. ## Core Features & Use Cases - Manifest Generation: Produces editor manifests with installation settings, cssProperties, data APIs, nested elements, and behaviors following Wix schema rules. - React Component Architecture: Generates functional components with sub-component patterns, element removal state handling, and strict TypeScript typing. - Editor-Safe CSS: Enforces responsive styling without media queries, CSS variables for dynamic values, and selector synchronization across all files. - Use Case: A developer asks for a product card with image, title, price, and buy button; the Skill outputs the manifest, React component, CSS, types, and extension registration wired for the Wix Editor. ## Quick Start Create a Wix site component for a hero section with a background image, headline, subtitle, and CTA button.