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 dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
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!
When making commits, the commit messages should be written in such a way that one would be able to read it as:
This commit will "\<your commit message here\>".
As an example, an appropriate commit message would be:
Add all static files from the previous repository.
Since it can be read as:
This commit will add all static files from the previous repository.
When creating branches, please ensure to follow this syntax, separating each section with a hyphen.
Start the branch name with the main purpose for the branch.
Category | Meaning |
---|---|
hotfix | for quickly fixing critical issues, usually with a temporary solution |
bugfix | for fixing a bug |
feature | for adding, removing or modifying a feature |
test | for experimenting something which is not an issue |
wip | for a work in progress |
Use the ID of the relevant issue for this branch to make it easier to link the issue.
Lastly, you can add a small phrase about what the branch will accomplish.
Some example branch names would be feature-39-issue-dependency
and hotfix-41-update-readme
.