├── .gitignore ├── README.md ├── _config.yml ├── foods.json ├── index.html └── web ├── favicon.ico ├── main.js └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | .idea/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithEmad/what-the-cook/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithEmad/what-the-cook/HEAD/_config.yml -------------------------------------------------------------------------------- /foods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithEmad/what-the-cook/HEAD/foods.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithEmad/what-the-cook/HEAD/index.html -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithEmad/what-the-cook/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithEmad/what-the-cook/HEAD/web/main.js -------------------------------------------------------------------------------- /web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithEmad/what-the-cook/HEAD/web/style.css --------------------------------------------------------------------------------