This is a clone of the Two Good Co website, an Australian social enterprise that sells products to help women in need. The aim of this project is to rebuild self-worth and independence in order to break free from the cycle of disadvantage. With every purchase made on their website, customers are helping to change the course of someone’s life; they are walking alongside vulnerable women as they find their way home again.
To view the website you can follow the given steps
1. **Clone the Repository**: Clone this repository to your local machine using the following command:
```
git clone https://github.com/ASHISH26940/toogoodto.git
```
2. **Open in Browser**: Open the `index.html` file in your preferred web browser to launch the Too Good Co Clone.
3. **Explore and Enjoy**: Navigate through the website and experience the Too Good Co Clone!
or you can directly click on the deploy link below
https://toogoodto.vercel.app/
## Contribution Guidelines
# Project Name
Short description of your project.
## Table of Contents
- [How to Contribute](#how-to-contribute)
- [Syncing with Upstream](#syncing-with-upstream)
## How to Contribute
We believe no creation in this world is a solo effort. Hence, contributions are always welcomed. Please go through our project, identify the cons and the areas needed for enhancement and contribute accordingly🤗.
1. **Fork the Repository:**
- Click on the "Fork" button at the top right corner of the repository page.
- This will create a copy of the repository in your GitHub account.
2. **Clone Your Fork:**
- Clone the repository from your GitHub account to your local machine.
```bash
git clone https://github.com/your-username/your-repository-name.git
```
3. **Create a Branch:**
- Create a new branch for your contribution.
```bash
git checkout -b branch-name
```
4. **Make Changes:**
- Make your desired changes to the codebase in the created branch.
5. **Commit Changes:**
- Commit your changes with a descriptive commit message.
```bash
git commit -m "Add feature or fix"
```
6. **Push Changes:**
- Push your changes to the created branch in your fork on GitHub.
```bash
git push origin feature-branch
```
7. **Create a Pull Request:**
- Open a Pull Request (PR) on the original repository.
- Provide a clear title and description for your PR.
8. **Review and Merge:**
- We will review your PR and may request changes.
- Once approved, your changes will be merged into the main branch.
## Syncing with Upstream
If the original repository has been updated, you can sync your fork to include the latest changes. Here's how:
1. **Add Upstream Remote:**
- Add the upstream repository as a remote.
```bash
git remote add upstream https://github.com/original-username/original-repository.git
```
2. **Fetch Upstream Changes:**
- Fetch the changes from the upstream repository.
```bash
git fetch upstream
```
3. **Merge Upstream Changes:**
- Merge the changes from the upstream repository into your local branch.
```bash
git merge upstream/main
```
Note: Replace `main` with the name of the branch you want to sync.
4. **Push Changes to Your Fork:**
- Push the updated changes to your fork on GitHub.
```bash
git push origin main
```
## Feedback
Feedbacks and suggestions are a great way for the overall improvement of any project. If you have any feedback, questions, or suggestions, feel free to open an issue in the repository. We welcome contributions from developers of all skill levels!
Happy coding! 🧑🏻💻🚀