Skip to content

Commit df1f599

Browse files
committed
Adding App Gallery section to home page
1 parent 14771be commit df1f599

File tree

1 file changed

+120
-1
lines changed

1 file changed

+120
-1
lines changed

content/home.mdx

Lines changed: 120 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ import { Link } from '@mui/material';
169169
<PageSection containerWidth="lg" sideRibbon="right" sx={{ paddingBottom: 8 }}>
170170
## Events & News
171171

172-
<Grid container spacing={4} sx={{ minHeight: '300px' }}>
172+
<Grid container spacing={4} sx={{ minHeight: '300px', marginBottom: '2.5rem' }}>
173173
<Grid item md={4}>
174174
<ContentCard variant="light" sx={{ height: '100%' }}>
175175
<Stack
@@ -251,4 +251,123 @@ import { Link } from '@mui/material';
251251
</ContentCard>
252252
</Grid>
253253
</Grid>
254+
255+
## App Gallery
256+
257+
<Grid container spacing={4} sx={{ minHeight: '200px' }}>
258+
<Grid item md={4} sm={6} xs={12}>
259+
<ContentCard variant="light" sx={{ height: '100%' }}>
260+
261+
<Stack
262+
sx={{
263+
justifyContent: 'space-between',
264+
height: '100%',
265+
}}>
266+
267+
<Box
268+
sx={{
269+
width: '100%',
270+
paddingBottom: '12px',
271+
'& .gatsby-image-wrapper': {
272+
borderRadius: '50%',
273+
display: 'flex',
274+
overflow: 'hidden',
275+
pointerEvents: 'none'
276+
}
277+
}}
278+
>
279+
![Ameriflux Dashboard UI](./images/gallery/ameriflux-1.png)
280+
</Box>
281+
282+
<Box>
283+
### Ameriflux Dashboard
284+
285+
Contributed by Sy-Toan Ngo
286+
</Box>
287+
<Box marginTop="16px">
288+
<Button
289+
to="/gallery/ameriflux-dashboard/"
290+
target="_blank"
291+
size="large"
292+
endIcon={<ArrowForwardIcon />}
293+
>
294+
View Details
295+
</Button>
296+
</Box>
297+
</Stack>
298+
299+
</ContentCard>
300+
</Grid>
301+
<Grid item md={4} sm={6} xs={12}>
302+
<ContentCard variant="light" sx={{ height: '100%' }}>
303+
304+
<Stack
305+
sx={{
306+
justifyContent: 'space-between',
307+
height: '100%',
308+
}}>
309+
310+
<Box
311+
sx={{
312+
width: '100%',
313+
paddingBottom: '12px',
314+
'& .gatsby-image-wrapper': {
315+
borderRadius: '50%',
316+
display: 'flex',
317+
overflow: 'hidden',
318+
pointerEvents: 'none',
319+
}
320+
}}
321+
>
322+
![Ameriflux Dashboard UI](./images/gallery/beamline-data-explorer-1.png)
323+
</Box>
324+
325+
<Box>
326+
### Explorer for Beamline Data
327+
328+
Contributed by Seij De Leon
329+
</Box>
330+
<Box marginTop="16px">
331+
<Button
332+
to="gallery/beamline-data-explorer/"
333+
target="_blank"
334+
size="large"
335+
endIcon={<ArrowForwardIcon />}
336+
>
337+
View Details
338+
</Button>
339+
</Box>
340+
</Stack>
341+
342+
</ContentCard>
343+
</Grid>
344+
<Grid item md={4} sm={6} xs={12}>
345+
<ContentCard variant="outlined" sx={{ height: '100%' }}>
346+
<Stack
347+
sx={{
348+
justifyContent: 'space-between',
349+
height: '100%',
350+
}}>
351+
<Box>
352+
## Explore App Gallery
353+
354+
<Box sx={{fontSize: '1.25rem'}}> View more examples of apps built using STRUDEL </Box>
355+
</Box>
356+
<Box marginTop="16px">
357+
<Button
358+
to="/gallery/"
359+
target="_blank"
360+
size="large"
361+
variant="contained"
362+
endIcon={<ArrowForwardIcon />}
363+
>
364+
View App Gallery
365+
</Button>
366+
</Box>
367+
368+
</Stack>
369+
</ContentCard>
370+
</Grid>
371+
</Grid>
372+
254373
</PageSection>

0 commit comments

Comments
 (0)