Skip to content

Commit b8c422b

Browse files
committed
Update website references to include 'www' in URLs
1 parent 323c40e commit b8c422b

14 files changed

Lines changed: 50 additions & 42 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export const config = {
9898

9999
Built by **[Emad Ibrahim](https://www.emadibrahim.com)**.
100100

101-
Website: [modelfaceoff.com](https://modelfaceoff.com)
101+
Website: [www.modelfaceoff.com](https://www.modelfaceoff.com)
102102

103103
## License
104104

assets/icon.icns

1.35 MB
Binary file not shown.

assets/icon.ico

0 Bytes
Binary file not shown.

assets/icon.png

1.11 MB
Loading

assets/logo.png

-181 KB
Loading

assets/logo_square.png

-317 KB
Loading

src/renderer/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { ModelComparison } from './components/ModelComparison';
1010
import { ConversationHistory } from './components/ConversationHistory';
1111
import { ApiLogs } from './components/ApiLogs';
1212
import { Conversation, Message } from '../types/window';
13+
import logoImage from './assets/logo.png';
1314

1415
type View = 'comparison' | 'history' | 'logs';
1516

@@ -84,6 +85,7 @@ export default function App() {
8485
<header className="app-header">
8586
<div className="header-left">
8687
<div className="app-logo">
88+
<img src={logoImage} alt="Model Faceoff" className="app-logo-image" />
8789
<h1 className="app-title">Model Faceoff</h1>
8890
</div>
8991
</div>

src/renderer/assets/logo.png

37.6 KB
Loading

src/renderer/components/ApiLogs/ApiLogs.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
}
183183

184184
.error-row {
185-
background: rgba(239, 68, 68, 0.05);
185+
background: rgba(248, 113, 113, 0.05);
186186
}
187187

188188
.time-cell {
@@ -220,12 +220,12 @@
220220
}
221221

222222
.status-badge.success {
223-
background: rgba(34, 197, 94, 0.1);
223+
background: rgba(52, 211, 153, 0.15);
224224
color: var(--color-success);
225225
}
226226

227227
.status-badge.error {
228-
background: rgba(239, 68, 68, 0.1);
228+
background: rgba(248, 113, 113, 0.15);
229229
color: var(--color-error);
230230
}
231231

src/renderer/components/ModelComparison/ModelComparison.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
}
5050

5151
.toolbar-button.danger:hover {
52-
background: rgba(239, 68, 68, 0.1);
52+
background: rgba(248, 113, 113, 0.1);
5353
}
5454

5555
/* Panels Container */
@@ -455,7 +455,7 @@
455455
align-items: center;
456456
gap: var(--space-sm);
457457
padding: var(--space-sm) var(--space-md);
458-
background: rgba(239, 68, 68, 0.1);
458+
background: rgba(248, 113, 113, 0.1);
459459
color: var(--color-error);
460460
border-radius: var(--radius-md);
461461
font-size: var(--text-sm);
@@ -531,7 +531,7 @@
531531
}
532532

533533
.stop-button:hover {
534-
background: #dc2626;
534+
background: #ef4444;
535535
}
536536

537537
/* Modal */

0 commit comments

Comments
 (0)