Fix demo task readiness and gate event creation
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-02-05 11:26:07 +01:00
parent 7262617897
commit 04c399aeb6
14 changed files with 318 additions and 36 deletions

View File

@@ -0,0 +1,8 @@
export function getAppName(): string {
return import.meta.env.VITE_APP_NAME || 'Fotospiel';
}
export function buildPageTitle(title?: string): string {
const appName = getAppName();
return title ? `${title} - ${appName}` : appName;
}