This is a Next.js project bootstrapped with create-next-app.
First, clone the repository and navigate to the project directory:
git clone https://github.com/rowleks/wellcare.git
cd wellcareThen, install the dependencies using yarn:
yarn installThis repository contains two branches:
main: This is the primary branch where the main development happens. You can continue working from this branch and send pull requests for any changes or features you implement.startup: This branch contains the assets and project setup files. If you want to start fresh or customize the project setup, you can switch to this branch and begin your work.
To switch to the startup branch after cloning the repository, run:
git checkout startupYou can choose to work from either branch depending on your needs.
To start the development server, run:
yarn devOpen http://localhost:3000 with your browser to see the result.
To build the project for production, run:
yarn buildAfter building, you can start the production server with:
yarn startTo lint the code, run:
yarn lintTo format the code, run:
yarn formatIf you want to contribute to this project, you can:
- Fork the repository.
- Clone your forked repository.
- Work on either the
mainbranch or thestartupbranch. - Push your changes to your forked repository.
- Open a pull request to the
mainbranch of the original repository.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!