Skip to content

Commit bf34afb

Browse files
committed
Improve the splash screen
1 parent 1f26015 commit bf34afb

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

frontend/src/pages/Auth/Splash/SplashPage.tsx

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
import { IonContent, IonImg, IonPage } from '@ionic/react';
1+
import { IonContent, IonPage } from '@ionic/react';
22
import { useEffect } from 'react';
33
import { useIonRouter } from '@ionic/react';
44
import { useTranslation } from 'react-i18next';
55

66
import './SplashPage.scss';
77
import splashBg from '../../../../src/assets/Splash.png';
8-
import logo from '../../../assets/logo_ls.png';
98
import { PropsWithTestId } from 'common/components/types';
109

1110
/**
@@ -42,14 +41,7 @@ const SplashPage = ({ testid = 'page-splash' }: SplashPageProps): JSX.Element =>
4241
alt={t('splash.background-alt', { ns: 'common' })}
4342
className="ls-splash-page__background"
4443
/>
45-
<div className="ls-splash-page__logo-container">
46-
<IonImg
47-
src={logo}
48-
alt={t('splash.logo-alt', { ns: 'common' })}
49-
className="ls-splash-page__logo"
50-
/>
51-
<span className="ls-splash-page__app-name">{t('app.name', { ns: 'common' })}</span>
52-
</div>
44+
<div className="ls-splash-page__logo-container"></div>
5345
</div>
5446
</IonContent>
5547
</IonPage>

0 commit comments

Comments
 (0)