@@ -8,7 +8,9 @@ import intro from "./assets/intro.gif";
8
8
import lightning from "./assets/lightning.svg" ;
9
9
import globe from "./assets/globe.svg" ;
10
10
import npm from "./assets/npm.svg" ;
11
- import previewImage from "./assets/notebook_preview.jpg" ;
11
+ import timePreviewImage from "./assets/time_preview.jpg" ;
12
+ import chartsPreviewImage from "./assets/charts_preview.jpg" ;
13
+ import apiPreviewImage from "./assets/api_preview.jpg" ;
12
14
13
15
export const StartScreen = observer ( ( ) => {
14
16
const { navigationStore, sessionStore } = getStoreService ( ) ;
@@ -137,41 +139,41 @@ export const StartScreen = observer(() => {
137
139
< div className = { styles . overview + " row" } >
138
140
< div className = { styles . notebook } >
139
141
< NotebookOverviewItem
140
- title = "Import & transform CSV "
141
- description = "See if we can import and manipulate some data "
142
- previewImage = { previewImage }
142
+ title = "It’s all about timing "
143
+ description = "Explore TypeCell's reactivity with the help of time "
144
+ previewImage = { timePreviewImage }
143
145
author = { {
144
146
username : "niklas" ,
145
147
profileImageUrl : "" ,
146
148
} }
147
149
onClick = { ( ) => {
148
- alert ( "todo ") ;
150
+ navigationStore . navigateToNotebook ( "@niklas/time ") ;
149
151
} } > </ NotebookOverviewItem >
150
152
</ div >
151
153
< div className = { styles . notebook } >
152
154
< NotebookOverviewItem
153
- title = "3D prototype. Work with new models and cameras "
154
- description = "Load a 3D model with adjustable camera interface "
155
- previewImage = { previewImage }
155
+ title = "Fun with charts "
156
+ description = "Visualize weather data with two React chart libraries "
157
+ previewImage = { chartsPreviewImage }
156
158
author = { {
157
159
username : "yousef" ,
158
160
profileImageUrl : "" ,
159
161
} }
160
162
onClick = { ( ) => {
161
- alert ( "todo ") ;
163
+ navigationStore . navigateToNotebook ( "@yousef/charts ") ;
162
164
} } > </ NotebookOverviewItem >
163
165
</ div >
164
166
< div className = { styles . notebook } >
165
167
< NotebookOverviewItem
166
- title = "Use React graphs "
167
- description = "Use React graph library to display various bar charts "
168
- previewImage = { previewImage }
168
+ title = "File upload using API "
169
+ description = "Connect a React file uploader with an API "
170
+ previewImage = { apiPreviewImage }
169
171
author = { {
170
- username : "pieter " ,
172
+ username : "niklas " ,
171
173
profileImageUrl : "" ,
172
174
} }
173
175
onClick = { ( ) => {
174
- alert ( "todo ") ;
176
+ navigationStore . navigateToNotebook ( "@niklas/api ") ;
175
177
} } > </ NotebookOverviewItem >
176
178
</ div >
177
179
</ div >
0 commit comments