├── .env.example ├── .gitignore ├── README.md ├── dist ├── assets │ ├── index-B1WBv5NY.css │ └── index-d2NQ_QK5.js ├── index.html └── vite.svg ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── index.css ├── main.tsx ├── pages │ └── main.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/README.md -------------------------------------------------------------------------------- /dist/assets/index-B1WBv5NY.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/dist/assets/index-B1WBv5NY.css -------------------------------------------------------------------------------- /dist/assets/index-d2NQ_QK5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/dist/assets/index-d2NQ_QK5.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/dist/vite.svg -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/src/pages/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/snake-game/HEAD/vite.config.ts --------------------------------------------------------------------------------