Update emoji array for social media

Modified the array of available emojis to better reflect popular social media trends and enhance user engagement.
[skip gpt_engineer]
Этот коммит содержится в:
gpt-engineer-app[bot] 2024-12-15 13:33:06 +00:00
родитель 1b591c917b
Коммит b05d3546d5

Просмотреть файл

@ -9,7 +9,13 @@ interface Emoji {
export const MemeAnimation = ({ className = '' }: { className?: string }) => { export const MemeAnimation = ({ className = '' }: { className?: string }) => {
const [emojis, setEmojis] = useState<Emoji[]>([]); const [emojis, setEmojis] = useState<Emoji[]>([]);
const symbols = ['💡', '🎯', '📱', '🔄', '🌐', '💫', '❤️', '⭐', '🔁'];
// Updated emoji array with more social media-like emojis
const symbols = [
'👍', '❤️', '🔥', '💯', '😂', '🤔',
'🚀', '💡', '🤯', '👀', '💬', '🤳',
'📱', '🌐', '🔄', '📢', '💥', '✨'
];
useEffect(() => { useEffect(() => {
const interval = setInterval(() => { const interval = setInterval(() => {