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-serial-position.md
1---2title: Place Key Items First or Last3impact: MEDIUM4tags: ux, serial-position, navigation, order5---67## Place Key Items First or Last89Users best remember the first and last items in a sequence. Place the most important actions at these positions.1011**Incorrect (important action buried in middle):**1213```tsx14<nav>15<Link href="/settings">Settings</Link>16<Link href="/">Home</Link>17<Link href="/about">About</Link>18</nav>19```2021**Correct (key items at edges):**2223```tsx24<nav>25<Link href="/">Home</Link>26<Link href="/about">About</Link>27<Link href="/settings">Settings</Link>28</nav>29```3031Reference: [Serial Position Effect](https://lawsofux.com/serial-position-effect/)32