Tic-Tac-Toe Game
This project is a web-based implementation of the classic Tic Tac Toe game. It is designed to provide an engaging and interactive experience for users, allowing them to play against another player or a CPU. The game is built using modern web technologies, ensuring a responsive and visually appealing interface.
Project Details
Features
- Player vs Player and Player vs CPU Modes: Users can choose to play against another player or challenge the CPU
- Responsive Design: The game is designed to work seamlessly across different devices and screen sizes
- Real-time Updates: The game state updates in real-time, providing a smooth and interactive user experience
- Score Tracking: The application keeps track of the scores for both players and displays the results at the end of each round
- Reset and Restart Options: Users can reset the game or start a new round at any time

Technologies Used
- React: The game is built using React, a popular JavaScript library for building user interfaces. React's component-based architecture allows for efficient rendering and state management
- Vite: The project uses Vite as the build tool, providing fast development and optimized production builds
- Sass: Styles are written in Sass, a powerful CSS preprocessor, allowing for modular and maintainable stylesheets
- Jest and React Testing Library: The application is thoroughly tested using Jest and React Testing Library to ensure reliability and robustness

Code Highlights
- State Management: The game state is managed using a custom hook, useGameState, which utilizes the useReducer hook for handling complex state transitions
- Game Logic: The logic for determining the game winner and handling player moves is encapsulated within the gameReducer function
- Responsive UI: The UI components are styled using a combination of CSS and Sass, ensuring a consistent look and feel across different devices

Challenges and Solutions
- Handling Game State: Managing the game state, especially with the CPU logic, was a challenge. This was addressed by carefully structuring the state and using useReducer to handle state transitions efficiently
- Responsive Design: Ensuring the game looked good on all devices required careful planning and testing. Media queries and flexible layouts were used to achieve this

Conclusion
This Tic Tac Toe game project showcases my ability to build interactive web applications using modern technologies. It demonstrates my skills in React, state management, responsive design, and testing. This project is a testament to my problem-solving abilities and attention to detail in creating a polished and user-friendly application
