Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

made navbar responsive #47

Open
wants to merge 9 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Contributing to Myntra Clone

Thank you for considering contributing to the Myntra Clone project! Your contributions help improve the project and enhance the community experience.

## Table of Contents
- [Getting Started](#getting-started)
- [How to Contribute](#how-to-contribute)
- [Reporting Issues](#reporting-issues)
- [Code of Conduct](#code-of-conduct)
- [License](#license)

## Getting Started

1. **Fork the Repository**: Click the "Fork" button in the top right corner of the repository to create your own copy of the project.

2. **Clone Your Fork**: Clone the repository to your local machine using the following command:
```bash
git clone https://github.com/your-username/myntra-clone.git
```

Replace your-username with your GitHub username.

Create a Feature Branch: Navigate to the project directory and create a new branch for your feature or bug fix:

```bash
cd myntra-clone
git checkout -b feature/your-feature-name
```

## How to Contribute

* Make Your Changes: Implement your feature or fix a bug. Please ensure that your code adheres to the project's coding style.

* Test Your Changes: Run the application and test your changes thoroughly to ensure they work as expected.

* Commit Your Changes: Commit your changes with a descriptive message:

```bash
git add .
git commit -m "Add a brief description of your changes"
```

* Push to Your Fork: Push your changes back to your fork:

```bash
git push origin feature/your-feature-name
```

* Open a Pull Request: Go to the original repository, and you will see an option to create a pull request. Fill out the pull request template and submit it for review.

## Reporting Issues

If you encounter any issues or have suggestions for improvements, please open an issue in the GitHub repository. Provide as much detail as possible to help us understand the problem.

## Code of Conduct

Please adhere to the project's Code of Conduct to ensure a welcoming and inclusive environment for all contributors.

## License

By contributing to this project, you agree that your contributions will be licensed under the project's LICENSE file.

Thank you for contributing to Myntra Clone!
Loading