2018-06-01 03:16:19 +02:00
"use strict" ;
Object . defineProperty ( exports , "__esModule" , {
value : true
} ) ;
exports . default = void 0 ;
var _react = _interopRequireDefault ( require ( "react" ) ) ;
2018-06-08 17:50:25 +02:00
var _Row = _interopRequireDefault ( require ( "@components/Row" ) ) ;
2018-06-01 03:16:19 +02:00
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { default : obj } ; }
2018-06-05 23:24:54 +02:00
var AboutSpeechDetails = function AboutSpeechDetails ( ) {
2018-06-08 17:50:25 +02:00
return _react . default . createElement ( "div" , null , _react . default . createElement ( _Row . default , null , _react . default . createElement ( "p" , {
className : 'large'
} , "Spee.ch is a media-hosting site that reads from and publishes content to the " , _react . default . createElement ( "a" , {
2018-06-01 03:16:19 +02:00
className : "link--primary" ,
href : "https://lbry.io"
2018-06-08 17:50:25 +02:00
} , "LBRY" ) , " blockchain." ) , _react . default . createElement ( "p" , {
className : 'large'
} , "Spee.ch is a hosting service, but with the added benefit that it stores your content on a decentralized network of computers -- the " , _react . default . createElement ( "a" , {
2018-06-01 03:16:19 +02:00
className : "link--primary" ,
href : "https://lbry.io/get"
2018-06-08 17:50:25 +02:00
} , "LBRY" ) , " network. This means that your images are stored in multiple locations without a single point of failure." ) ) , _react . default . createElement ( _Row . default , null , _react . default . createElement ( "h3" , null , "Contribute" ) , _react . default . createElement ( "p" , {
className : 'large'
} , "If you have an idea for your own spee.ch-like site on top of LBRY, fork our " , _react . default . createElement ( "a" , {
2018-06-01 03:16:19 +02:00
className : "link--primary" ,
href : "https://github.com/lbryio/spee.ch"
2018-06-08 17:50:25 +02:00
} , "github repo" ) , " and go to town!" ) , _react . default . createElement ( "p" , {
className : 'large'
} , "If you want to improve spee.ch, join our " , _react . default . createElement ( "a" , {
2018-06-01 03:16:19 +02:00
className : "link--primary" ,
href : "https://chat.lbry.io"
} , "discord channel" ) , " or solve one of our " , _react . default . createElement ( "a" , {
className : "link--primary" ,
href : "https://github.com/lbryio/spee.ch/issues"
2018-06-08 17:50:25 +02:00
} , "github issues" ) , "." ) ) ) ;
2018-06-01 03:16:19 +02:00
} ;
2018-06-05 23:24:54 +02:00
var _default = AboutSpeechDetails ;
2018-06-01 03:16:19 +02:00
exports . default = _default ;