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, isRewardApproved, reward, verifyAccount } = this.props; return (

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

{__("Please have")} {" "} {reward && } {!reward && {__("??")}} {" "} {__("as a thank you for building content freedom.")}

{isRewardApproved && } {!isRewardApproved && }
); } } export default ModalWelcome;