Code Arcade is a collection of classic and logic-based mini-games built using modern web technologies. The project is designed to be lightweight, responsive, and fun to play!
- 8 Puzzle Game – A classic sliding puzzle.
- Tic Tac Toe – Choose between Player vs Player or Player vs AI (Minimax).
- More Games Coming Soon... – Stay tuned!
main/
├── public/
├── src/
│ ├── assets/
│ ├── components/
│ ├── games/
│ │ ├── EightPuzzle.jsx
│ │ ├── TicTacToe.jsx
│ │ └── UnderDevelopment.jsx
│ └── App.jsx
├── index.css
├── tailwind.config.js
├── vite.config.js
└── ...
All the main code files are inside the
mainfolder. Make sure to navigate into it after cloning.
- React + Vite
- Tailwind CSS
- JavaScript (ES6)
Clone the repository:
git clone https://github.com/Adwaith-Jayan/Code-Arcade.git
cd main
npm install
npm run devThe project is deployed using Vercel. To deploy your own version:
- Push your code to GitHub.
- Visit https://vercel.com.
- Import the project from GitHub.
- Follow the prompts to deploy.
Pull requests are welcome! Feel free to submit a PR with a new mini-game or improvements.