Enhance product pages with dynamic content: Updated mail-gateway.php, vpc.php, vps.php, and webhosting.php to replace static text with dynamic PHP variables for product names, descriptions, and call-to-action elements, improving maintainability and update efficiency.

This commit is contained in:
𝓜𝓪𝓬𝓮™
2026-04-02 12:05:05 +02:00
parent cc804c01de
commit 30dba2f43d

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): ...`.