Skip to content

Commit e2c1a81

Browse files
author
梅西
committed
fix: use ApeCloud logo on home page
1 parent 25d5a51 commit e2c1a81

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

ui/desktop/src/components/onboarding/OnboardingGuard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useEffect, useRef, useState } from 'react';
22
import { useNavigate } from 'react-router-dom';
33
import { useConfig } from '../ConfigContext';
44
import { useModelAndProvider } from '../ModelAndProviderContext';
5-
import { Goose } from '../icons';
5+
import apeCloudLogo from '../../images/logo.png';
66
import { Button } from '../ui/button';
77
import ProviderSelector from './ProviderSelector';
88
import OnboardingSuccess from './OnboardingSuccess';
@@ -154,7 +154,7 @@ export default function OnboardingGuard({ children }: OnboardingGuardProps) {
154154
<div className="h-screen w-full bg-background-default flex flex-col items-center justify-center">
155155
<div className="text-center max-w-md">
156156
<div className="mb-4">
157-
<Goose className="size-8 mx-auto" />
157+
<img src={apeCloudLogo} alt="ApeMind Agent" className="size-8 mx-auto object-contain" />
158158
</div>
159159
<h1 className="text-xl font-light mb-3">{intl.formatMessage(i18n.checkProviderErrorTitle)}</h1>
160160
<p className="text-text-muted mb-6">{intl.formatMessage(i18n.checkProviderErrorDescription)}</p>
@@ -187,7 +187,7 @@ export default function OnboardingGuard({ children }: OnboardingGuardProps) {
187187
className={`text-left transition-all duration-500 ease-in-out overflow-hidden ${hasSelection ? 'max-h-0 opacity-0 mb-0' : 'max-h-60 opacity-100 mb-8'}`}
188188
>
189189
<div className="mb-4">
190-
<Goose className="size-8" />
190+
<img src={apeCloudLogo} alt="ApeMind Agent" className="size-8 object-contain" />
191191
</div>
192192
<h1 className="text-2xl sm:text-4xl font-light mb-3">{intl.formatMessage(i18n.welcomeTitle)}</h1>
193193
<p className="text-text-muted text-base sm:text-lg">

ui/desktop/src/components/sessions/SessionsInsights.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Greeting } from '../common/Greeting';
66
import { useNavigate } from 'react-router-dom';
77
import { Button } from '../ui/button';
88
import { ChatSmart } from '../icons/';
9-
import { Goose } from '../icons/Goose';
9+
import GooseLogo from '../GooseLogo';
1010
import { Skeleton } from '../ui/skeleton';
1111
import {
1212
getSessionInsights,
@@ -152,7 +152,7 @@ export function SessionInsights() {
152152
<div className="bg-background-primary rounded-b-2xl mb-0.5">
153153
<div className="px-8 pb-12 pt-19 space-y-4">
154154
<div className="origin-bottom-left goose-icon-animation">
155-
<Goose className="size-8" />
155+
<GooseLogo size="small" hover={false} />
156156
</div>
157157
<Greeting />
158158
</div>
@@ -245,7 +245,7 @@ export function SessionInsights() {
245245
<div className="bg-background-primary rounded-b-2xl mb-0.5">
246246
<div className="px-8 pb-12 pt-19 space-y-4">
247247
<div className="origin-bottom-left goose-icon-animation">
248-
<Goose className="size-8" />
248+
<GooseLogo size="small" hover={false} />
249249
</div>
250250
<Greeting />
251251
</div>

0 commit comments

Comments
 (0)