├── .gitignore ├── README.md ├── components.json ├── jsconfig.json ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ ├── loading.js │ ├── not-found.js │ ├── page.js │ └── recipe-list │ │ ├── [details] │ │ └── page.js │ │ └── page.js ├── components │ ├── recipe-details │ │ └── index.js │ ├── recipe-list │ │ └── index.js │ └── ui │ │ ├── card.jsx │ │ └── skeleton.jsx └── lib │ └── utils.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/components.json -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/app/layout.js -------------------------------------------------------------------------------- /src/app/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/app/loading.js -------------------------------------------------------------------------------- /src/app/not-found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/app/not-found.js -------------------------------------------------------------------------------- /src/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/app/page.js -------------------------------------------------------------------------------- /src/app/recipe-list/[details]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/app/recipe-list/[details]/page.js -------------------------------------------------------------------------------- /src/app/recipe-list/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/app/recipe-list/page.js -------------------------------------------------------------------------------- /src/components/recipe-details/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/components/recipe-details/index.js -------------------------------------------------------------------------------- /src/components/recipe-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/components/recipe-list/index.js -------------------------------------------------------------------------------- /src/components/ui/card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/components/ui/card.jsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/components/ui/skeleton.jsx -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/src/lib/utils.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sangammukherjee/nextjs-food-recipe-2024/HEAD/tailwind.config.js --------------------------------------------------------------------------------