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 😭🔥
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 😭🔥