import React from "react"; import { Modal } from "component/modal"; import { CreditAmount } from "component/common"; import Link from "component/link"; import RewardLink from "component/rewardLink"; class ModalWelcome extends React.PureComponent { constructor(props) { super(props); this.state = { isFirstScreen: true, }; } render() { const { closeModal, totalRewardValue, verifyAccount } = this.props; const totalRewardRounded = Math.round(totalRewardValue / 10) * 10; return ( {this.state.isFirstScreen &&

{__("Welcome to LBRY")}

{__( "Using LBRY is like dating a centaur. Totally normal up top, and" )} {" "}{__("way different")} {__("underneath.")}

{__("Up top, LBRY is similar to popular media sites.")}

{__( "Below, LBRY is controlled by users -- you -- via blockchain and decentralization." )}

{ this.setState({ isFirstScreen: false }); }} label={__("Continue")} />
} {!this.state.isFirstScreen &&

{__("Claim Your Credits")}

The LBRY network is controlled and powered by credits called{" "} LBC, a blockchain asset.

{__("New patrons receive ")} {" "} {totalRewardValue ? : {__("credits")}} {" "} {__("in rewards for usage and influence of the network.")}

{__( "You'll also earn weekly bonuses for checking out the greatest new stuff." )}

}
); } } export default ModalWelcome;