frontend-ui
Installation
SKILL.md
Frontend UI Development Masterclass
Core Philosophy
This skill focuses on creating "premium" web experiences. We don't just build functionality; we build feeling. Every interaction should be smooth, every layout responsive, and every aesthetic choice intentional.
Technology Stack Deep Dive
1. React Architecture & Patterns
We use React not just for components, but for state-driven UI architecture.
Component Composition Patterns
Avoid prop-drilling by using composition (children prop) and slots.
// Bad: Prop drilling
<Layout userName={user.name} userAvatar={user.avatar} onLogout={handleLogout} />