@@ -2,7 +2,7 @@ import { useEffect, useRef, useState } from 'react';
22import { useNavigate } from 'react-router-dom' ;
33import { useConfig } from '../ConfigContext' ;
44import { useModelAndProvider } from '../ModelAndProviderContext' ;
5- import { Goose } from '../icons ' ;
5+ import apeCloudLogo from '../../images/logo.png ' ;
66import { Button } from '../ui/button' ;
77import ProviderSelector from './ProviderSelector' ;
88import 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" >
0 commit comments