Cook With Me is a recipe website built using Next.js. The website allows users to explore various recipes, view detailed ingredients and instructions. The project aims to provide a clean, modern, and responsive platform that makes cooking easier and more enjoyable for users. It uses Next.js to ensure fast performance, SEO optimization, and easy navigation. You can reach the website at Cook With Me
Before you begin, ensure you have the following software installed:
-
Node.js (version 14 or higher): A JavaScript runtime required to build and run Next.js applications. You can download it from here.
-
npm (Node Package Manager): It is included with Node.js and is used to manage project dependencies.
To verify if Node.js and npm are installed, run the following commands:
node -v
npm -v
If both are installed correctly, the version numbers will be displayed.
To set up and run the project locally, follow these steps:
Open your terminal and run:
git clone https://github.com/SaminLabbaf/Cook-With-Me.git
Change into the project directory:
cd Cook-With-Me
Inside the project folder, run the following command to install all necessary dependencies:
npm install
Start the development server by running:
npm run dev
Your app will be accessible at http://localhost:3000.