Many tools are designed for a first-time tour. The products people keep are designed for the five-minute return visit.
A returning user wants context immediately:
- What changed?
- What needs me?
- Can I finish one useful thing before the next meeting?
type ReturnView = {
changedSinceLastVisit: Change[];
needsAttention: Task[];
quickWins: Task[];
};
The model is simple, but it changes the interface. Navigation becomes quieter. Status becomes more specific. The primary action reflects the work, not the product’s desire for engagement.
No comments yet. Start the conversation with something worth discussing.