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; }