aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/first-time-flow/welcome/welcome.component.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/pages/first-time-flow/welcome/welcome.component.js')
-rw-r--r--ui/app/components/pages/first-time-flow/welcome/welcome.component.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/ui/app/components/pages/first-time-flow/welcome/welcome.component.js b/ui/app/components/pages/first-time-flow/welcome/welcome.component.js
index f28a8210d..08eb86939 100644
--- a/ui/app/components/pages/first-time-flow/welcome/welcome.component.js
+++ b/ui/app/components/pages/first-time-flow/welcome/welcome.component.js
@@ -3,7 +3,7 @@ import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
import Mascot from '../../../mascot'
import Button from '../../../button'
-import { INITIALIZE_CREATE_PASSWORD_ROUTE, INITIALIZE_NOTICE_ROUTE } from '../../../../routes'
+import { INITIALIZE_SELECT_ACTION_ROUTE, INITIALIZE_UNIQUE_IMAGE_ROUTE } from '../../../../routes'
export default class Welcome extends PureComponent {
static propTypes = {
@@ -25,12 +25,12 @@ export default class Welcome extends PureComponent {
const { history, isInitialized } = this.props
if (isInitialized) {
- history.push(INITIALIZE_NOTICE_ROUTE)
+ history.push(INITIALIZE_UNIQUE_IMAGE_ROUTE)
}
}
handleContinue = () => {
- this.props.history.push(INITIALIZE_CREATE_PASSWORD_ROUTE)
+ this.props.history.push(INITIALIZE_SELECT_ACTION_ROUTE)
}
render () {
@@ -41,22 +41,22 @@ export default class Welcome extends PureComponent {
<div className="welcome-page">
<Mascot
animationEventEmitter={this.animationEventEmitter}
- width="225"
- height="225"
+ width="125"
+ height="125"
/>
<div className="welcome-page__header">
{ t('welcome') }
</div>
<div className="welcome-page__description">
<div>{ t('metamaskDescription') }</div>
- <div>{ t('holdEther') }</div>
+ <div>{ t('happyToSeeYou') }</div>
</div>
<Button
- type="first-time"
+ type="confirm"
className="first-time-flow__button"
onClick={this.handleContinue}
>
- { t('continue') }
+ { t('getStarted') }
</Button>
</div>
</div>