first implementation of tamagui mobile pages

This commit is contained in:
Codex Agent
2025-12-10 15:49:08 +01:00
parent 5c93bfa405
commit 9930b272ca
39 changed files with 491904 additions and 2727 deletions

View File

@@ -14,6 +14,8 @@ import deSettings from './locales/de/settings.json';
import enSettings from './locales/en/settings.json';
import deAuth from './locales/de/auth.json';
import enAuth from './locales/en/auth.json';
import deMobile from './locales/de/mobile.json';
import enMobile from './locales/en/mobile.json';
const DEFAULT_NAMESPACE = 'common';
@@ -25,6 +27,7 @@ const resources = {
management: deManagement,
settings: deSettings,
auth: deAuth,
mobile: deMobile,
},
en: {
common: enCommon,
@@ -33,6 +36,7 @@ const resources = {
management: enManagement,
settings: enSettings,
auth: enAuth,
mobile: enMobile,
},
} as const;