| Do | Write descriptive, concise link text that clearly communicates the destination. |
| Do | Set `isStandalone` when the link appears outside of inline text, so it receives proper base font sizing. |
| Do | Only set `label` when the link content is not descriptive text (e.g. an icon-only link). For text links, the visible text is already the accessible name — adding `label` overrides it for screen readers, which is harmful. |
| Don't | Use Link for actions that do not navigate — use a Button instead. |
| Don't | Use generic text like "click here" or "read more" — describe the destination. |
| Don't | Set `label` on text links — `aria-label` prevents assistive technology from reading the actual link content. |