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 AboutSpeechOverview = function AboutSpeechOverview ( ) {
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 : "extra-large"
} , "Spee.ch is an open-source project. Please contribute to the existing site, or fork it and make your own." ) ) , _react . default . createElement ( _Row . default , null , _react . default . createElement ( "p" , {
className : 'large'
} , _react . default . createElement ( "a" , {
2018-06-01 03:16:19 +02:00
className : "link--primary" ,
target : "_blank" ,
href : "https://twitter.com/spee_ch"
2018-06-08 17:50:25 +02:00
} , "TWITTER" ) ) , _react . default . createElement ( "p" , {
className : 'large'
} , _react . default . createElement ( "a" , {
2018-06-01 03:16:19 +02:00
className : "link--primary" ,
target : "_blank" ,
href : "https://github.com/lbryio/spee.ch"
2018-06-08 17:50:25 +02:00
} , "GITHUB" ) ) , _react . default . createElement ( "p" , {
className : 'large'
} , _react . default . createElement ( "a" , {
2018-06-01 03:16:19 +02:00
className : "link--primary" ,
target : "_blank" ,
href : "https://discord.gg/YjYbwhS"
2018-06-08 17:50:25 +02:00
} , "DISCORD CHANNEL" ) ) , _react . default . createElement ( "p" , {
className : 'large'
} , _react . default . createElement ( "a" , {
2018-06-01 03:16:19 +02:00
className : "link--primary" ,
target : "_blank" ,
href : "https://github.com/lbryio/spee.ch/blob/master/README.md"
2018-06-08 17:50:25 +02:00
} , "DOCUMENTATION" ) ) ) ) ;
2018-06-01 03:16:19 +02:00
} ;
2018-06-05 23:24:54 +02:00
var _default = AboutSpeechOverview ;
2018-06-01 03:16:19 +02:00
exports . default = _default ;