Skip to content

Commit 7a0f64e

Browse files
committed
update to use guidellm logo and icon
1 parent 2f72e78 commit 7a0f64e

24 files changed

+18
-40
lines changed

DEVELOPING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,11 @@ npm run build
221221
npm run test:integration
222222
```
223223

224+
- **Integration+Unit tests with coverage**:
225+
```bash
226+
npm run coverage
227+
```
228+
224229
- **End-to-end tests** (using Cypress, ensure live dev server):
225230

226231
```bash

README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -196,16 +196,6 @@ src/lib/store/[runInfo/workloadDetails/benchmarks]WindowData.ts
196196

197197
In the future this will be replaced by a configurable untracked file for dev use.
198198

199-
### 🚧 Future Possibilities
200-
201-
We're evaluating options for hosting dev/staging/prod builds on GitHub Pages. For now, production builds will be published at:
202-
203-
```
204-
https://neuralmagic.github.io/guidellm/ui/dev/
205-
```
206-
207-
If needed, alternative hosting (e.g., Vercel, Netlify) may be explored, but simplicity and transparency remain key priorities for this open-source tool.
208-
209199
## Resources
210200

211201
### Documentation
2.73 KB
Loading
5.75 KB
Loading

src/ui/app/assets/icons/index.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@ import ArrowUp from './arrow-up.svg';
33
import CheckCircle from './check-circle.svg';
44
import Expand from './expand.svg';
55
import Info from './info.svg';
6-
import NeuralMagicTitleV2 from './nm-logo-with-name.svg';
6+
import guideLLMIconDark from './guidellm-icon-dark.png';
7+
import guideLLMLogoLight from './guidellm-logo-light.png';
78
import Open from './open.svg';
89
import WarningCircle from './warning-circle.svg';
910

1011
export {
1112
ArrowDown,
1213
ArrowUp,
13-
Expand,
1414
CheckCircle,
15-
WarningCircle,
15+
Expand,
16+
guideLLMIconDark,
17+
guideLLMLogoLight,
1618
Info,
17-
NeuralMagicTitleV2,
1819
Open,
20+
WarningCircle,
1921
};

src/ui/app/assets/icons/nm-logo-with-name.svg

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/ui/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export async function generateMetadata(): Promise<Metadata> {
1313
title: 'GuideLLM',
1414
description: 'LLM Benchmarking Tool',
1515
icons: {
16-
icon: `${assetPrefix}/favicon.ico`,
16+
icon: `${assetPrefix}/favicon.png`,
1717
apple: `${assetPrefix}/favicon-192x192.png`,
1818
},
1919
manifest: `${assetPrefix}/manifest.json`,

src/ui/lib/components/PageFooter/PageFooter.component.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Box, Link, Typography } from '@mui/material';
33
import React from 'react';
44

5-
import { NeuralMagicTitleV2 } from '@assets/icons';
5+
import { guideLLMLogoLight } from '@assets/icons';
66

77
export const Component = () => {
88
return (
@@ -26,7 +26,7 @@ export const Component = () => {
2626
</Link>
2727
</Box>
2828
<Box>
29-
<NeuralMagicTitleV2 />
29+
<img width="150px" alt="guidellm logo" src={guideLLMLogoLight.src} />
3030
</Box>
3131
</Box>
3232
);
5.32 KB
Loading
-25.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)