This project follows Conventional Commits.
<type>(<scope>): <subject>
<body>
<footer>
feat: A new featurefix: A bug fixdocs: Documentation only changesstyle: Changes that do not affect the meaning of the code (white-space, formatting, etc)refactor: A code change that neither fixes a bug nor adds a featureperf: A code change that improves performancetest: Adding missing tests or correcting existing testsbuild: Changes that affect the build system or external dependenciesci: Changes to our CI configuration files and scriptschore: Other changes that don't modify src or test filesrevert: Reverts a previous commit
feat(auth): implement login functionality
- Add login form component
- Implement authentication service
- Add token storage
Closes #123
fix(ui): correct button alignment in navigation bar
The alignment was causing the button to overlap with other elements on smaller screens.
docs: update README with new API documentation