Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/ux-pareto-prioritize-features.md
1---2title: Prioritize the Critical 20% of Features3impact: MEDIUM4tags: ux, pareto, prioritization, features5---67## Prioritize the Critical 20% of Features8980% of users use 20% of features (Pareto Principle). Optimize the critical path first.1011**Incorrect (all features equally prominent):**1213```tsx14function Toolbar() {15return (16<div>17{allFeatures.map(f => <Button key={f.id}>{f.label}</Button>)}18</div>19);20}21```2223**Correct (critical features prominent, rest accessible):**2425```tsx26function Toolbar() {27return (28<div>29{criticalFeatures.map(f => <Button key={f.id}>{f.label}</Button>)}30<MoreMenu features={secondaryFeatures} />31</div>32);33}34```3536Reference: [Pareto Principle](https://lawsofux.com/pareto-principle/)37