Replace numbers with people icons

Replace the numbers on the circles in the "Parliament of Sikinia" puzzle with people icons.
This commit is contained in:
gpt-engineer-app[bot] 2025-07-23 20:56:01 +00:00
parent 95c79baf92
commit 3c457231a8

View file

@ -3,7 +3,7 @@ import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Button } from '@/components/ui/button'; import { Button } from '@/components/ui/button';
import { Badge } from '@/components/ui/badge'; import { Badge } from '@/components/ui/badge';
import { Alert, AlertDescription } from '@/components/ui/alert'; import { Alert, AlertDescription } from '@/components/ui/alert';
import { Play, RotateCcw, Trophy, Clock, Info, ChevronDown, ChevronUp, Crown, Shield, Star, Heart, Diamond, Zap, Target, Award, Gem, Sparkles } from 'lucide-react'; import { Play, RotateCcw, Trophy, Clock, Info, ChevronDown, ChevronUp, User, UserCircle, Users, UserCheck, UserX, Baby, PersonStanding, Smile, Frown, Meh } from 'lucide-react';
import SocialShare from '@/components/SocialShare'; import SocialShare from '@/components/SocialShare';
interface Person { interface Person {
@ -216,7 +216,7 @@ const SikiniaParliamentPuzzle: React.FC<SikiniaParliamentPuzzleProps> = ({ showS
}; };
const getPersonIcon = (id: number) => { const getPersonIcon = (id: number) => {
const icons = [Crown, Shield, Star, Heart, Diamond, Zap, Target, Award, Gem, Sparkles]; const icons = [User, UserCircle, Users, UserCheck, UserX, Baby, PersonStanding, Smile, Frown, Meh];
return icons[id]; return icons[id];
}; };