"use client"; import { Logo } from './logo'; export const LoadingScreen = () => { // We might not have settings here, so we provide a default t function. // This avoids a circular dependency where AuthProvider -> LoadingScreen -> useSettings, // but SettingsProvider needs AuthProvider. const t = (key: string, options?: any) => options?.defaultValue || key; return (
{t('loadingSecureSession', { defaultValue: 'Loading Secure Session...' })}