This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, Start the redis server: https://redis.io/topics/quickstart

Second, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.js. The page auto-updates as you edit the file.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

Redis

I used Redis to store the username and token so that we can do logout functionality by deleting token in redis db, So kindly install and start redis server before starting nextjs project.

Kindly follow below link step. https://redis.io/topics/quickstart

NOte:

Default I used redux persist state management to share the data. But I also coded recoil and context withno data persistance which has been comment.

Reference: https://www.youtube.com/watch?v=7J4iL1HDshQ&list=PLYSZyzpwBEWSQsrukurP09ksi49H9Yj40 https://www.youtube.com/watch?v=2tJedF8I-8Q&t=482s https://github.com/zeit/next.js/tree/canary/examples

I used mostly client side rendering for data fetching some part i used server side rendering for authenication...