@@ -21,22 +21,21 @@ const styles = {
21
21
alignItems :'center' as 'center' ,
22
22
fontSize :'1rem' ,
23
23
lineHeight :'1rem' ,
24
- padding :'1rem ' ,
24
+ padding :'0.5rem ' ,
25
25
} ,
26
26
title :{
27
27
fontSize :'3rem' ,
28
+ fontWeight :'bold' as 'bold' ,
28
29
} ,
29
30
subtitle :{
30
31
fontSize :'1.3rem' ,
31
32
} ,
32
33
options :{
33
34
flex :1 ,
34
- backgroundColor :'#EBEBEB' ,
35
35
display :'flex' as 'flex' ,
36
36
flexDirection :'column' as 'column' ,
37
37
justifyContent :'flex-start' as 'flex-start' ,
38
38
alignItems :'center' as 'center' ,
39
- padding :'1rem' ,
40
39
} ,
41
40
betaBadge :{
42
41
backgroundColor :'#6a67ce' ,
@@ -57,21 +56,27 @@ export const StartPage = (props: Props) => (
57
56
< div css = { styles . page } >
58
57
< div css = { styles . header } >
59
58
< Badge content = "beta" style = { styles . betaBadge } >
60
- < span css = { styles . title } > CodeRoad </ span >
59
+ < h1 css = { styles . title } >
60
+ CodeRoad< span > </ span >
61
+ </ h1 >
61
62
</ Badge >
62
63
< h3 css = { styles . subtitle } > Play Interactive Coding Tutorials in VSCode</ h3 >
64
+ < p > Learn by coding in a real environment.</ p >
65
+ < p > Instant feedback on save.</ p >
66
+ < p > Progress saves to Git.</ p >
67
+ < p > Build your portfolio as you learn.</ p >
63
68
</ div >
64
69
65
70
< div css = { styles . options } >
66
71
< div css = { styles . buttonContainer } >
67
- < Button size = "large" type = "primary" onClick = { props . onNew } style = { { width :'12rem ' } } >
68
- New Tutorial
72
+ < Button size = "large" type = "primary" onClick = { props . onNew } style = { { padding :'0 2.5rem ' } } >
73
+ Start New Tutorial
69
74
</ Button >
70
75
</ div >
71
76
{ props . tutorial && (
72
77
< div css = { styles . buttonContainer } >
73
- < Button size = "large" onClick = { props . onContinue } style = { { width :'12rem ' } } >
74
- Continue" { props . tutorial . summary . title } "
78
+ < Button size = "large" onClick = { props . onContinue } style = { { padding :'0 1rem ' } } >
79
+ ContinueCurrent Tutorial
75
80
</ Button >
76
81
</ div >
77
82
) }