I would simplify my use of state management.
const [score, setScore] = useState(0);
const [rulesModal, setRulesModal] = useState(false);
const [player, setPlayer] = useState(null);
const [computer, setComputer] = useState(null);
const [picked, setPicked] = useState(false);
const [playerImage, setPlayerImage] = useState(null);
const [computerImage, setComputerImage] = useState(null);
const choices = ["rock", "paper", "scissors"];
const [result, setResult] = useState(null);
What challenges did you encounter, and how did you overcome them?
The main challenge was the animations, I used framer motion for the first time.
What specific areas of your project would you like help with?any feedback is appreciated.