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 WelcomeModal extends React.PureComponent { render() { const { closeModal, hasClaimed, isRewardApproved, reward } = 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 ? : }
:

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 WelcomeModal;