comissions-app-ui/views/cards/CardImgTop.tsx

25 lines
812 B
TypeScript
Raw Normal View History

2024-02-18 01:44:48 -05:00
// ** MUI Imports
import Card from '@mui/material/Card'
import CardMedia from '@mui/material/CardMedia'
import Typography from '@mui/material/Typography'
import CardContent from '@mui/material/CardContent'
const CardImgTop = () => {
return (
<Card>
<CardMedia sx={{ height: '14.5625rem' }} image='/images/cards/glass-house.png' />
<CardContent>
<Typography variant='h6' sx={{ marginBottom: 2 }}>
Influencing The Influencer
</Typography>
<Typography variant='body2'>
Cancun is back, better than ever! Over a hundred Mexico resorts have reopened and the state tourism minister
predicts Cancun will draw as many visitors in 2006 as it did two years ago.
</Typography>
</CardContent>
</Card>
)
}
export default CardImgTop