diff --git a/src/components/game/animations/CommunityAnimation.tsx b/src/components/game/animations/CommunityAnimation.tsx index bb06ff9..4aa2002 100644 --- a/src/components/game/animations/CommunityAnimation.tsx +++ b/src/components/game/animations/CommunityAnimation.tsx @@ -2,9 +2,10 @@ import React from 'react'; import { motion } from 'framer-motion'; export const CommunityAnimation = ({ className = '' }: { className?: string }) => { + // Create multiple community groups with members const groups = Array.from({ length: 3 }, (_, i) => ({ - x: 25 + i * 25, - y: 50, + x: 25 + i * 25, // Spread groups horizontally + y: 50, // Center vertically members: Array.from({ length: 8 }, (_, j) => ({ id: i * 8 + j, initialX: Math.random() * 100, @@ -16,6 +17,7 @@ export const CommunityAnimation = ({ className = '' }: { className?: string }) =