diff --git a/src/components/game/animations/MemeAnimation.tsx b/src/components/game/animations/MemeAnimation.tsx index 31611df..79f4858 100644 --- a/src/components/game/animations/MemeAnimation.tsx +++ b/src/components/game/animations/MemeAnimation.tsx @@ -9,7 +9,13 @@ interface Emoji { export const MemeAnimation = ({ className = '' }: { className?: string }) => { const [emojis, setEmojis] = useState([]); - const symbols = ['💡', '🎯', '📱', '🔄', '🌐', '💫', '❤️', '⭐', '🔁']; + + // Updated emoji array with more social media-like emojis + const symbols = [ + '👍', '❤️', '🔥', '💯', '😂', '🤔', + '🚀', '💡', '🤯', '👀', '💬', '🤳', + '📱', '🌐', '🔄', '📢', '💥', '✨' + ]; useEffect(() => { const interval = setInterval(() => {