All rules in this guide must be followed or might get replaced without warning.
-
All TypeScript code must follow this guide. HTML and CSS files should follow this.
-
Branch names must follow this naming convention:
- fix/...: Branches dedicated to fixing specific issues or bugs in the codebase.
- feat/...: Branches focused on implementing new features or functionalities.
- wip/...: Branches indicating work-in-progress, often for incomplete features or experimental changes.
- refactor/...: Branches for refactoring existing code to improve its structure, readability or performance.
- hotfix/...: Branches for addressing critical issues or bugs that require immediate action.
- test/...: Branches for testing purposes, such as writing or updating unit tests.
- rules/...: Branches for updating this file only.
-
Try to keep branch names short.
-
Avoid unnecessary commenting. Clean code must be self-explanatory.
This is a Next.js project bootstrapped with create-next-app.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
This project uses next/font to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!