I would love for your contributions, here are the guidelines I would like you to follow.
Just suit to Conventional Commits with these enums:
featdocsrefactorstylechorebuildfixrevertui: update of ui design
then commit
$ git commit -m 'fix: my fix'first of all, fork this repository from github
then clone your forked repository.
$ git clone https://github.com/<your_github_username>/website
$ cd websiteCreate a branch for your contribute or use main branch
$ git branch -m 'my-fix-name'Your repository setup ready, let's setup enviroment.
I'm using pnpm in this project you can see pnpm-lock.yaml. install pnpm or just use npm (slowest install)
$ npm install -g pnpmInstall dependencies and start app in development.
$ pnpm install
$ pnpm devNow you are ready to development make your code update.
You don't need to suit a Pull request template just add a description.
$ git add <my-changed-files>
$ git commit -m '<type>: <description>'
$ git push origin <your-branch>Now go your forked repository in github.
Open a pull request from your repository then wait me!