1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
import React from 'react';
import styled from 'styled-components';
import { colors } from '../../config.json';
import { messages } from '../../shared/gettext';
import { HeaderBarSettingsButton } from './HeaderBar';
import ImageView from './ImageView';
import { Container, Header, Layout } from './Layout';
const StyledContainer = styled(Container)({
flex: 1,
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'center',
marginTop: '-150px',
});
const Title = styled.h1({
fontFamily: 'DINPro',
fontSize: '24px',
fontWeight: 900,
lineHeight: '30px',
color: colors.white60,
marginBottom: '4px',
});
const Subtitle = styled.span({
fontFamily: 'Open Sans',
fontSize: '14px',
lineHeight: '20px',
marginHorizontal: '22px',
color: colors.white40,
textAlign: 'center',
});
const Logo = styled(ImageView)({
marginBottom: '5px',
});
export default function Launch() {
return (
<Layout>
<Header>
<HeaderBarSettingsButton />
</Header>
<StyledContainer>
<Logo height={106} width={106} source="logo-icon" />
<Title>{messages.pgettext('generic', 'MULLVAD VPN')}</Title>
<Subtitle role="alert">
{messages.pgettext('launch-view', 'Connecting to Mullvad system service...')}
</Subtitle>
</StyledContainer>
</Layout>
);
}
|