Thank you for your interest in contributing to React Google Reviews!
We appreciate all contributions, whether it's fixing a bug, adding a feature, improving documentation, or optimizing performance. This guide will help you get started.
First, fork the repository and clone it locally:
git clone https://github.com/Featurable/react-google-reviews.git
cd react-google-reviewsEnsure you have Node.js (LTS recommended) and install dependencies:
npm installStart the development environment by running:
npm run dev- Check GitHub Issues
- If you have an idea, create a new issue before submitting a PR.
Follow branch naming conventions:
git checkout -b feature/my-new-component # For new features
git checkout -b fix/button-padding # For bug fixes- Follow our coding style (Prettier).
- If applicable, update documentation (
README.md).
Commit messages should be descriptive:
git commit -m "fix(button): resolve padding issue"
git push origin feature/my-new-component- Open a Pull Request against the
mainbranch. - Reference the issue it fixes (if applicable).
- Request a review from a maintainer.
We appreciate your contributions—thank you for making React Google Reviews better!