Chore: Basic Layout/Chrome + Stubs (WIP)

This commit is contained in:
Youwes09
2026-05-22 21:30:40 -05:00
parent c891cb349c
commit 081becdd60
23 changed files with 1685 additions and 14 deletions
+9 -8
View File
@@ -1,10 +1,11 @@
export type AppStatus = 'booting' | 'auth' | 'ready' | 'error'
export type AppStatus = 'booting' | 'not-configured' | 'auth' | 'ready' | 'error'
export const appState = $state({
status: 'booting' as AppStatus,
error: null as string | null,
serverUrl: '',
authenticated: false,
platform: 'web' as 'web' | 'tauri' | 'capacitor',
version: '',
})
status: 'booting' as AppStatus,
error: null as string | null,
serverUrl: '',
authenticated: false,
authMode: 'NONE' as 'NONE' | 'BASIC_AUTH' | 'UI_LOGIN',
platform: 'web' as 'web' | 'tauri' | 'capacitor',
version: '',
})