Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a67b60f

Browse files
committed
Rebrand frontend to ML Agent
Replace HF Agent branding and Hugging Face logo with ML Agent and the smolagents icon across the welcome screen, app header, favicon, and page title. Refresh the welcome screen tagline.
1 parent 3bf831e commit a67b60f

4 files changed

Lines changed: 12 additions & 14 deletions

File tree

β€Žfrontend/index.htmlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/png" href="/hf-log-only-white.png" />
5+
<link rel="icon" type="image/webp" href="/smolagents.webp" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>HF Agent</title>
7+
<title>ML Agent</title>
88
<link rel="preconnect" href="https://fonts.googleapis.com" />
99
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
1010
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
9.93 KB
Loading

β€Žfrontend/src/components/Layout/AppLayout.tsxβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ export default function AppLayout() {
231231
<Box sx={{ flex: 1, display: 'flex', justifyContent: 'center', alignItems: 'center', gap: 0.75 }}>
232232
<Box
233233
component="img"
234-
src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
235-
alt="HF"
234+
src="/smolagents.webp"
235+
alt="smolagents"
236236
sx={{ width: { xs: 20, md: 22 }, height: { xs: 20, md: 22 } }}
237237
/>
238238
<Typography
@@ -244,7 +244,7 @@ export default function AppLayout() {
244244
fontSize: { xs: '0.88rem', md: '0.95rem' },
245245
}}
246246
>
247-
HF Agent
247+
ML Agent
248248
</Typography>
249249
</Box>
250250

β€Žfrontend/src/components/WelcomeScreen/WelcomeScreen.tsxβ€Ž

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export default function WelcomeScreen() {
271271
const joinOrgStatus: StepStatus = isOrgMember ? 'completed' : isAuthenticated ? 'active' : 'locked';
272272
const startStatus: StepStatus = isAuthenticated && isOrgMember ? 'active' : 'locked';
273273

274-
// Space URL for iframe "Open HF Agent" step
274+
// Space URL for iframe "Open ML Agent" step
275275
const spaceHost =
276276
typeof window !== 'undefined'
277277
? window.location.hostname.includes('.hf.space')
@@ -295,8 +295,8 @@ export default function WelcomeScreen() {
295295
{/* Logo */}
296296
<Box
297297
component="img"
298-
src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg"
299-
alt="Hugging Face"
298+
src="/smolagents.webp"
299+
alt="smolagents"
300300
sx={{ width: 80, height: 80, mb: 2.5, display: 'block' }}
301301
/>
302302

@@ -311,7 +311,7 @@ export default function WelcomeScreen() {
311311
fontSize: { xs: '1.8rem', md: '2.4rem' },
312312
}}
313313
>
314-
HF Agent
314+
ML Agent
315315
</Typography>
316316

317317
{/* Description */}
@@ -328,9 +328,7 @@ export default function WelcomeScreen() {
328328
'& strong': { color: 'var(--text)', fontWeight: 600 },
329329
}}
330330
>
331-
A general-purpose AI agent for <strong>machine learning engineering</strong>.
332-
It browses <strong>Hugging Face docs</strong>, manages <strong>repos</strong>,
333-
launches <strong>training jobs</strong>, and explores <strong>datasets</strong>.
331+
Your <strong>ML intern</strong>. It reads <strong>papers</strong>, finds <strong>datasets</strong>, trains <strong>models</strong>, and iterates until the numbers go up. Instructions in. Trained model out.
334332
</Typography>
335333

336334
{/* ── Checklist ──────────────────────────────────────────── */}
@@ -372,11 +370,11 @@ export default function WelcomeScreen() {
372370
/>
373371
<ChecklistStep
374372
stepNumber={2}
375-
title="Open HF Agent"
373+
title="Open ML Agent"
376374
description="Open the agent in a full browser tab to get started."
377375
status={isOrgMember ? 'active' : 'locked'}
378376
lockedReason="Join the organization first."
379-
actionLabel="Open HF Agent"
377+
actionLabel="Open ML Agent"
380378
actionIcon={<OpenInNewIcon sx={{ fontSize: 16 }} />}
381379
actionHref={spaceHost}
382380
isLast

0 commit comments

Comments
Β (0)