What problem does it solve?
This Skill provides comprehensive guidance for designing and implementing user interfaces that are consistent, responsive, and accessible. It eliminates guesswork and ensures your UI components are production-ready, saving you time on design reviews and rework.
Core Features & Use Cases
- Design System Guidelines: Provides clear color palettes, typography scales, spacing systems, and border radius conventions.
- Layout & Component Patterns: Offers templates for container, grid, flex layouts, and common components like cards, forms, and buttons using shadcn/ui.
- Responsive & Accessible Design: Guides on mobile-first breakpoints, hide/show by breakpoint, ARIA labels, and semantic HTML for inclusive UIs.
- Use Case: When creating a new dashboard screen, use this skill to quickly implement a responsive grid layout with consistent spacing, accessible form fields, and branded buttons, ensuring a polished user experience.
Quick Start
Example: Basic Card Component
<Card>
<CardHeader>
<CardTitle>Card Title</CardTitle>
</CardHeader>
<CardContent>
<p>Card content here</p>
</CardContent>
</Card>