Description
New users currently see a completely empty board with no guidance on what to do next. Add a friendly welcome message that shows up when there are zero tasks.
File
client/src/pages/Dashboard.jsx
Tasks
Acceptance Criteria
- Empty board shows the welcome message instead of a blank screen
- Clicking the button opens the add-card flow (same as normal + Add card)
- Message disappears once at least one task exists
Suggested code
```jsx
if (tasks.length === 0) {
return (
👋
Welcome to your board!
You don't have any tasks yet. Click + Add card to create your first one.
+ Add your first card
);
}
```
Description
New users currently see a completely empty board with no guidance on what to do next. Add a friendly welcome message that shows up when there are zero tasks.
File
client/src/pages/Dashboard.jsxTasks
tasks.length === 0Acceptance Criteria
Suggested code
```jsx
if (tasks.length === 0) {
return (
👋
Welcome to your board!
You don't have any tasks yet. Click + Add card to create your first one.
+ Add your first card
);
}
```