cleaning up layout

This commit is contained in:
Max
2023-09-23 22:32:52 -07:00
parent 900a22af0b
commit a762a3cbb7
5 changed files with 26 additions and 28 deletions
+3 -3
View File
@@ -4,15 +4,15 @@ import React from 'react'
const InfoCard = (props) => {
return (
<Card sx={{height: 450}}>
<Card sx={{height: 500}}>
<Container>
<Typography variant="h5" align='center' marginY={4}>{props.title}</Typography>
<Typography variant="h3" align='center' marginY={4}>{props.title}</Typography>
<Box>
<Box marginBottom={4} sx={{textAlign: 'center'}}>
{props.picture}
</Box>
<Box>
<Typography>{props.text}</Typography>
<Typography variant='h5'>{props.text}</Typography>
</Box>
</Box>
</Container>