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 { render() { const { closeModal, hasClaimed, isRewardApproved, reward, verifyAccount, } = this.props; return !hasClaimed ?

{__("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." )}

{__("Thank you for making content freedom possible!")} {" "}{isRewardApproved ? __("Here's a nickel, kid.") : ""}

{isRewardApproved && } {!isRewardApproved && } {!isRewardApproved && }
:

{__("About Your Reward")}

{__("You earned a reward of")} {" "} {" "}{__("LBRY credits, or")} {__("LBC")}.

{__( "This reward will show in your Wallet momentarily, probably while you are reading this message." )}

{__( "LBC is used to compensate creators, to publish, and to have say in how the network works." )}

{__( "No need to understand it all just yet! Try watching or downloading something next." )}

{__( "Finally, know that LBRY is an early beta and that it earns the name." )}

; } } export default ModalWelcome;