Skip to content

Commit fde93a4

Browse files
gtsiolisroboquat
authored andcommitted
Add UA logo
1 parent ba168ed commit fde93a4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
Lines changed: 2 additions & 0 deletions
Loading

components/dashboard/src/start/StartPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
import { useEffect } from 'react';
8-
import gitpodIcon from '../icons/gitpod.svg';
8+
import gitpodIconUA from '../icons/gitpod-ua.svg';
99

1010
export enum StartPhase {
1111
Checking = 0,
@@ -87,7 +87,7 @@ export function StartPage(props: StartPageProps) {
8787
return <div className="w-screen h-screen align-middle">
8888
<div className="flex flex-col mx-auto items-center text-center h-screen">
8989
<div className="h-1/3"></div>
90-
<img src={gitpodIcon} alt="Gitpod's logo" className={`h-16 flex-shrink-0 ${(error || phase === StartPhase.Stopped || phase === StartPhase.IdeReady) ? '' : 'animate-bounce'}`} />
90+
<img src={gitpodIconUA} alt="Gitpod's logo" className={`h-16 flex-shrink-0 ${(error || phase === StartPhase.Stopped || phase === StartPhase.IdeReady) ? '' : 'animate-bounce'}`} />
9191
<h3 className="mt-8 text-xl">{title}</h3>
9292
{typeof(phase) === 'number' && phase < StartPhase.IdeReady && <ProgressBar phase={phase} error={!!error} />}
9393
{error && <StartError error={error} />}

0 commit comments

Comments
 (0)