@@ -20,13 +20,19 @@ var react_redux_1 = require('react-redux');
2020var store_1 = require ( '../../store/store' ) ;
2121var Action = require ( '../../actions/actions' ) ;
2222var path = require ( 'path' ) ;
23+ var welcomeStyle = {
24+ backgroundImage :"url(\"" + path . resolve ( __dirname , '../../../' , 'styles' , 'coderoad.jpg' ) + "\")" ,
25+ backgroundRepeat :'no-repeat' ,
26+ height :'350px' ,
27+ marginTop :'0'
28+ } ;
2329var Welcome = ( function ( _super ) {
2430__extends ( Welcome , _super ) ;
2531function Welcome ( ) {
2632_super . apply ( this , arguments ) ;
2733}
2834Welcome . prototype . render = function ( ) {
29- return React . createElement ( "div" , { class : 'cr-welcome' } , React . createElement ( "img " , { src : path . resolve ( __dirname , '../../../' , 'styles' , 'coderoad.jpg' ) } ) , React . createElement ( flat_button_1 . default , { label :'Start' , onTouchTap :this . props . routeToTutorials } ) ) ;
35+ return React . createElement ( "div" , { style : welcomeStyle } , React . createElement ( "div " , { class : 'cr-welcome' } , React . createElement ( flat_button_1 . default , { label :'Start' , onTouchTap :this . props . routeToTutorials , style : { marginTop : '200px' } } ) ) ) ;
3036} ;
3137Welcome = __decorate ( [
3238react_redux_1 . connect ( null , function ( dispatch ) {