We welcome contributions to our project! Please follow these steps to contribute:
-
Fork the repository on GitHub.
-
Clone your forked repository to your local machine:
git clone https://github.com/your-username/originui.git -
Navigate to the project directory:
cd originui -
Create a new branch for your feature or bug fix:
git checkout -b your-branch-name -
Install the project dependencies:
npm install -
Make your changes to the codebase.
-
Before building, format your code:
npm run format -
Build the project:
npm run build -
Test the application to ensure your changes work as expected.
-
Commit your changes:
git commit -m "Your descriptive commit message" -
Push your changes to your fork:
git push origin your-branch-name -
Open a pull request on the original repository.
Thank you for contributing to our project!