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

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();