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