@@ -4,8 +4,15 @@ import { css, jsx } from '@emotion/core'
44import Button from '../../components/Button'
55
66const styles = {
7- options :{
8- padding :'0rem 1rem' ,
7+ page :{
8+ padding :'1rem' ,
9+ } ,
10+ section :{
11+ marginTop :'1rem' ,
12+ marginBottom :'2rem' ,
13+ } ,
14+ buttonContainer :{
15+ marginTop :'1rem' ,
916} ,
1017}
1118
@@ -19,10 +26,33 @@ const CompletedPage = (props: Props) => {
1926props . send ( 'SELECT_TUTORIAL' )
2027}
2128return (
22- < div >
23- < h3 > Tutorial Complete</ h3 >
24- < div css = { styles . options } >
25- < Button onClick = { selectNewTutorial } > Continue</ Button >
29+ < div css = { styles . page } >
30+ < h1 > Tutorial Complete!</ h1 >
31+ < div css = { styles . section } >
32+ < p > Thank you for demoing the CodeRoad beta!</ p >
33+ </ div >
34+ < div css = { styles . section } >
35+ < h3 > Subscribe!</ h3 >
36+ < p > Sign up to our mailing list to be first to hear about future tutorials.</ p >
37+ < div css = { styles . buttonContainer } >
38+ < a href = "https://tiny.cc/coderoad" >
39+ < Button type = "primary" > Subscribe to Mailing List</ Button >
40+ </ a >
41+ </ div >
42+ </ div >
43+ < div css = { styles . section } >
44+ < h3 > Contact Us</ h3 >
45+ < p > We'd love to hear your comments, ideas& feedback . </ p >
46+ < p >
47+ Reach out at< a href = "mailto:coderoadapp@gmail.com" > coderoadapp@gmail.com</ a > !
48+ </ p >
49+ </ div >
50+ < div css = { styles . section } >
51+ < h3 > Continue</ h3 >
52+ < p > To try another tutorial, open a new VSCode workspace and launch the CodeRoad app</ p >
53+ < div css = { styles . buttonContainer } >
54+ < Button onClick = { selectNewTutorial } > Return to Tutorial List</ Button >
55+ </ div >
2656</ div >
2757</ div >
2858)