export const Cover = () => {
return (
<Box>
<Box>
<Typography>Image originale avec 400 x 300</Typography>
<Image source="https://picsum.photos/seed/696/400/300" width={400} height={300} />
</Box>
<Box>
<Typography>Image déformée avec width 250 et height 200 (rendu 250 x 200)</Typography>
<Image source="https://picsum.photos/seed/696/400/300" width={250} height={200} />
</Box>
<Box>
<Typography>Image avec une width de 200px (rendu 200 x 150)</Typography>
<Image source="https://picsum.photos/seed/696/400/300" width={200} />
</Box>
<Box>
<Typography>Image avec une height de 200px (rendu 400 x 200)</Typography>
<Image source="https://picsum.photos/seed/696/400/300" height={200} />
</Box>
</Box>
);
};