chore: heygermany customer project
Some checks failed
Main / Setup and Test (push) Has been cancelled
Main / Build Website (push) Has been cancelled

This commit is contained in:
e2e
2026-07-11 11:17:38 +02:00
commit 40352e4179
370 changed files with 35601 additions and 0 deletions

10
CLAUDE.md Normal file
View File

@@ -0,0 +1,10 @@
# Repo Guidance
- Do not bypass `@pikku/mantine` i18n typing by wrapping final text in plain HTML elements such as `span` or `div`.
- Do not use wrapper-based "neutralization" to silence `I18nNode` errors.
- `Text` may contain plain numeric children like `{1}` when the value is a number, but do not brand digit literals like `'1'` as translation text.
- Fix the root issue instead:
- use `t('...')` for real UI copy
- improve shared component typings/helpers when needed
- use `asI18n(...)` only in an explicit, deliberate pass
- If the correct fix is not clear, stop and ask before introducing a workaround.