2017-12-21 22:08:54 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { Modal } from 'modal/modal';
|
|
|
|
import Link from 'component/link/index';
|
2017-08-18 19:09:40 +02:00
|
|
|
|
|
|
|
const ModalWelcome = props => {
|
|
|
|
const { closeModal } = props;
|
|
|
|
|
|
|
|
return (
|
2017-12-21 22:08:54 +01:00
|
|
|
<Modal type="custom" isOpen contentLabel="Welcome to LBRY">
|
2017-08-18 19:09:40 +02:00
|
|
|
<section>
|
2017-12-21 22:08:54 +01:00
|
|
|
<h3 className="modal__header">{__('Welcome to LBRY')}</h3>
|
2017-08-18 19:09:40 +02:00
|
|
|
<p>
|
2017-12-21 22:08:54 +01:00
|
|
|
{__('Using LBRY is like dating a centaur. Totally normal up top, and')}{' '}
|
|
|
|
<em>{__('way different')}</em> {__('underneath.')}
|
2017-08-18 19:09:40 +02:00
|
|
|
</p>
|
2017-12-21 22:08:54 +01:00
|
|
|
<p>{__('Up top, LBRY is similar to popular media sites.')}</p>
|
2017-08-18 19:09:40 +02:00
|
|
|
<p>
|
2017-12-21 22:08:54 +01:00
|
|
|
{__('Below, LBRY is controlled by users -- you -- via blockchain and decentralization.')}
|
2017-08-18 19:09:40 +02:00
|
|
|
</p>
|
|
|
|
<div className="modal__buttons">
|
2017-12-21 22:08:54 +01:00
|
|
|
<Link button="primary" onClick={closeModal} label={__("Blockchain Centaurs? I'm In")} />
|
2017-08-18 19:09:40 +02:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ModalWelcome;
|