mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Updating client dependancies. Switching to using yarn. * Updating React * Moving pure components to using function syntax (performance gains with newer react version) * Updating client dependancies. * Ignore .yarninstall * Enabling pre-lockfile because it's the entire point of using yarn. * Removing old webpack config * Moving to new prop-types * Fixing ESLint Errors * Updating jest snapshots. * Cleaning up package.json
74 lines
2.6 KiB
JavaScript
74 lines
2.6 KiB
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import React from 'react';
|
|
|
|
import {FormattedMessage} from 'react-intl';
|
|
import {Link} from 'react-router';
|
|
|
|
import MattermostIcon from 'images/favicon/android-chrome-192x192.png';
|
|
import Nexus6Mockup from 'images/nexus-6p-mockup.png';
|
|
|
|
export default function GetAndroidApp() {
|
|
return (
|
|
<div className='get-app get-android-app'>
|
|
<h1 className='get-app__header'>
|
|
<FormattedMessage
|
|
id='get_app.androidHeader'
|
|
defaultMessage='Mattermost works best if you switch to our Android app'
|
|
/>
|
|
</h1>
|
|
<hr/>
|
|
<div>
|
|
<img
|
|
className='get-android-app__icon'
|
|
src={MattermostIcon}
|
|
/>
|
|
<div className='get-android-app__app-info'>
|
|
<span className='get-android-app__app-name'>
|
|
<FormattedMessage
|
|
id='get_app.androidAppName'
|
|
defaultMessage='Mattermost for Android'
|
|
/>
|
|
</span>
|
|
<span className='get-android-app__app-creator'>
|
|
<FormattedMessage
|
|
id='get_app.mattermostInc'
|
|
defaultMessage='Mattermost, Inc'
|
|
/>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<a
|
|
className='btn btn-primary get-android-app__continue'
|
|
href={global.window.mm_config.AndroidAppDownloadLink}
|
|
>
|
|
<FormattedMessage
|
|
id='get_app.continue'
|
|
defaultMessage='Continue'
|
|
/>
|
|
</a>
|
|
<img
|
|
className='get-app__screenshot'
|
|
src={Nexus6Mockup}
|
|
/>
|
|
<span className='get-app__continue-with-browser'>
|
|
<FormattedMessage
|
|
id='get_app.continueWithBrowser'
|
|
defaultMessage='Or {link}'
|
|
values={{
|
|
link: (
|
|
<Link to='/switch_team'>
|
|
<FormattedMessage
|
|
id='get_app.continueWithBrowserLink'
|
|
defaultMessage='continue with browser'
|
|
/>
|
|
</Link>
|
|
)
|
|
}}
|
|
/>
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|