refactor: import brand icons directly from design system
Some checks failed
CI / build (push) Failing after 36s
CI / cleanup-branch (push) Has been skipped
CI / docker (push) Has been skipped
CI / deploy (push) Has been skipped
CI / deploy-feature (push) Has been skipped

Import PNGs via Vite from @cameleer/design-system/assets instead of
copying to public/. Only favicons remain in public/ (needed by HTML).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-06 22:20:07 +02:00
parent f372d0d63c
commit 1386e80670
6 changed files with 4 additions and 7 deletions

View File

@@ -95,8 +95,6 @@ public class SecurityConfig {
"/index.html",
"/config.js",
"/favicon-*.png",
"/cameleer3-logo-*.png",
"/camel-logo.svg",
"/assets/**"
).permitAll()

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -4,6 +4,7 @@ import { useAuthStore } from './auth-store';
import { api } from '../api/client';
import { config } from '../config';
import { Card, Input, Button, Alert, FormField } from '@cameleer/design-system';
import brandLogo from '@cameleer/design-system/assets/cameleer3-192.png';
import styles from './LoginPage.module.css';
interface OidcInfo {
@@ -131,7 +132,7 @@ export function LoginPage() {
<Card className={styles.card}>
<div className={styles.loginForm}>
<div className={styles.logo}>
<img src={`${config.basePath}cameleer3-logo-192.png`} alt="" className={styles.logoImg} />
<img src={brandLogo} alt="" className={styles.logoImg} />
cameleer3
</div>
<p className={styles.subtitle}>{subtitle}</p>

View File

@@ -16,6 +16,7 @@ import {
useStarred,
} from '@cameleer/design-system';
import type { SearchResult, SidebarTreeNode } from '@cameleer/design-system';
import sidebarLogo from '@cameleer/design-system/assets/cameleer3-48.png';
import { Box, Settings, FileText, ChevronRight, Square, Pause, Star, X } from 'lucide-react';
import { useQueryClient } from '@tanstack/react-query';
import { useRouteCatalog } from '../api/queries/catalog';
@@ -625,7 +626,7 @@ function LayoutContent() {
// --- Render -------------------------------------------------------
const camelLogo = (
<img src={`${config.basePath}cameleer3-logo-48.png`} alt="" style={{ width: 28, height: 28 }} />
<img src={sidebarLogo} alt="" style={{ width: 28, height: 28 }} />
);
const sidebarElement = (