chore: replace SVG logo with transparent-background PNG for dark theme support

- Add new logo.png (2090x512) with transparent background
- Update AppLayout and LoginPage imports from .svg to .png
- Old SVG had opaque background that clashed with dark theme

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-16 14:52:46 -04:00
parent f20f54b128
commit 5ebfc4f3aa
3 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

View File

@@ -18,7 +18,7 @@ import { usePreferencesStore } from '../../stores/preferencesStore';
import { Sidebar } from './Sidebar';
import { AppTour } from '../onboarding/AppTour';
import { OnboardingWizard } from '../onboarding/OnboardingWizard';
import logoSrc from '../../assets/logo.svg';
import logoSrc from '../../assets/logo.png';
export function AppLayout() {
const [opened, { toggle, close }] = useDisclosure();

View File

@@ -16,7 +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 logoSrc from '../../assets/logo.svg';
import logoSrc from '../../assets/logo.png';
export function LoginPage() {
const [loading, setLoading] = useState(false);