Svelte Guideline: UX Principles — Apply Don Norman feedback principle. Description: Every user action needs visual haptic or auditory response. Do: Loading spinner + haptic trigger + toast on action. Don't: Button that does nothing visible on click. Good Example: trigger('nudge'); toast.success('Saved'). Bad Example: saveData() with no feedback. Severity: High. Docs: .