##Running the Next.js App and JSON Server Locally
1.Clone the repository to your local machine using git clone
.
2.Navigate to the root directory of the project in the terminal.
3.Install the required dependencies using npm install
.
4.Start the JSON server by running npm run json-server
in a separate terminal window.This will start the JSON server on port 3000.
5.Start the Next.js app by running npm run dev
in the original terminal window. This will start the Next.js app on port 3001.
6.Open your web browser and navigate to http://localhost:3001 to view the Next.js app.
Note: If you encounter any issues with starting the app or the server, make sure to check the console output in your terminal for error messages.