Skip to content

Commit 55b9850

Browse files
committed
chore(ui): replace default logo with new brand logo
1 parent 61342ca commit 55b9850

6 files changed

Lines changed: 4 additions & 29 deletions

File tree

frontend/.env.local.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ NEXT_PUBLIC_UPLOAD_API_URL=http://localhost:8000
2222
# NEXT_PUBLIC_APP_NAME=Xagent
2323

2424
# Logo Configuration
25-
# Logo Path (default: /xagent_logo.svg)
26-
# NEXT_PUBLIC_LOGO_PATH=/xagent_logo.svg
25+
# Logo Path (default: /xagent_logo.png)
26+
# NEXT_PUBLIC_LOGO_PATH=/xagent_logo.png
2727

2828
# White Logo Path (default: /xagent_white_logo.png)
2929
# NEXT_PUBLIC_WHITE_LOGO_PATH=/xagent_white_logo.png

frontend/public/xagent_logo.png

28 KB
Loading

frontend/public/xagent_logo.svg

Lines changed: 0 additions & 25 deletions
This file was deleted.
-6.36 KB
Loading

frontend/src/components/pages/models.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ const LOCAL_PROVIDER_CONFIGS: Record<string, Partial<ProviderConfig>> = {
167167
defaultBaseUrl: "https://api.anthropic.com/v1",
168168
},
169169
xinference: {
170-
icon: <img src="/xagent_logo.svg" alt="Xinference" className="w-6 h-6" />,
170+
icon: <img src="/xagent_logo.png" alt="Xinference" className="w-6 h-6" />,
171171
category: ["llm", "embedding", "image", "speech"],
172172
defaultBaseUrl: "http://localhost:9997",
173173
},

frontend/src/lib/branding.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export interface BrandingConfig {
1313

1414
export const defaultBranding: BrandingConfig = {
1515
appName: 'Xagent',
16-
logoPath: '/xagent_logo.svg',
16+
logoPath: '/xagent_logo.png',
1717
whiteLogoPath: '/xagent_white_logo.png',
1818
logoAlt: 'Xagent Logo',
1919
subtitle: 'Next generation agent operating system',

0 commit comments

Comments
 (0)