Skip to content

Commit

Permalink
Add UA logo
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsiolis committed Feb 25, 2022
1 parent 1f63f30 commit 0a13de2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions components/dashboard/src/icons/gitpod-ua.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions components/dashboard/src/start/StartPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

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

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

0 comments on commit 0a13de2

Please sign in to comment.