import React from "react"; import { Modal } from "modal/modal"; import Link from "component/link/index"; const ModalWelcome = props => { const { closeModal } = 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." )}

); }; export default ModalWelcome;