Merge branch 'main' into develop

This commit is contained in:
𝓜𝓪𝓬𝓮™
2026-04-09 15:27:44 +02:00
parent 0f9b76af19
commit 9261af3e53
39 changed files with 3012 additions and 844 deletions

31
CONTRIBUTING.md Normal file
View File

@@ -0,0 +1,31 @@
# Contributing
## Commit Message Standard
Bitte nutze fuer alle Commits dieses Format:
`<type>: <kurze beschreibung>`
Beispiele:
- `feat: add dynamic hero text from product config`
- `fix: correct package card price rendering`
- `refactor: centralize product page section labels`
## Erlaubte Typen
- `feat` neue Funktionalitaet
- `fix` Bugfix
- `refactor` Umstrukturierung ohne Verhaltensaenderung
- `docs` Dokumentation
- `test` Tests
- `chore` Wartung/Tooling
- `perf` Performance
- `build` Build/Dependencies
- `ci` CI/CD-Aenderungen
- `revert` Ruecknahme eines Commits
## Regeln
- Subjekt im Imperativ und klein beginnen.
- Keine Punkte am Ende der Commit-Betreffzeile.
- Optional Scope nutzen, wenn sinnvoll: `feat(ui): ...`, `fix(router): ...`.