Skip to content

Show random dev quote on empty board 💬 #542

Description

@anoopcodehack

Show random dev quote on empty board 💬

File: client/src/components/Board/KanbanBoard.jsx

Empty board shows basic message 💀
Add some dev humor to cheer up fr!!

Fix: add quotes array:
const DEV_QUOTES = [
"It works on my machine 🤷",
"Have you tried turning it off and on again? 💻",
"Fix one bug, create three more 🐛",
"Code never lies, comments sometimes do 📝",
"It's not a bug, it's a feature ✨",
"Works fine in production... said no one 😅"
]

const quote = DEV_QUOTES[
Math.floor(Math.random() * DEV_QUOTES.length)
]

// show on empty board below main message:

"{quote}"

~8 lines! No backend needed 🎯
Makes devs laugh and stay 😭🔥

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions