diff --git a/frontend/src/components/layout/AppLayout.tsx b/frontend/src/components/layout/AppLayout.tsx index 6d448cf..3d4c243 100644 --- a/frontend/src/components/layout/AppLayout.tsx +++ b/frontend/src/components/layout/AppLayout.tsx @@ -106,7 +106,16 @@ export function AppLayout() { - HOA LedgerIQ + HOA LedgerIQ {currentOrg && ( diff --git a/frontend/src/pages/auth/LoginPage.tsx b/frontend/src/pages/auth/LoginPage.tsx index 08d3749..90e1465 100644 --- a/frontend/src/pages/auth/LoginPage.tsx +++ b/frontend/src/pages/auth/LoginPage.tsx @@ -16,6 +16,7 @@ import { IconAlertCircle } from '@tabler/icons-react'; import { useNavigate, Link } from 'react-router-dom'; import api from '../../services/api'; import { useAuthStore } from '../../stores/authStore'; +import { usePreferencesStore } from '../../stores/preferencesStore'; import logoSrc from '../../assets/logo.png'; export function LoginPage() { @@ -23,6 +24,7 @@ export function LoginPage() { const [error, setError] = useState(''); const navigate = useNavigate(); const setAuth = useAuthStore((s) => s.setAuth); + const isDark = usePreferencesStore((s) => s.colorScheme) === 'dark'; const form = useForm({ initialValues: { email: '', password: '' }, @@ -57,7 +59,16 @@ export function LoginPage() { return (
- HOA LedgerIQ + HOA LedgerIQ
Don't have an account?{' '}