diff --git a/src/components/game/animations/CommunityAnimation.tsx b/src/components/game/animations/CommunityAnimation.tsx index 3efbe2a..fe02114 100644 --- a/src/components/game/animations/CommunityAnimation.tsx +++ b/src/components/game/animations/CommunityAnimation.tsx @@ -3,18 +3,18 @@ import { motion } from 'framer-motion'; export const CommunityAnimation = ({ className = '' }: { className?: string }) => { const groups = Array.from({ length: 3 }, (_, i) => ({ - x: 25 + i * 25, // Spread groups evenly (25%, 50%, 75%) + x: 25 + i * 25, // Spread groups horizontally (25%, 50%, 75%) y: 50, // Center vertically members: Array.from({ length: 8 }, (_, j) => ({ id: i * 8 + j, - initialX: Math.random() * 80 + 10, - initialY: Math.random() * 80 + 10, + initialX: Math.random() * 100, + initialY: Math.random() * 100, })) })); return (