mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
25 lines
812 B
TypeScript
25 lines
812 B
TypeScript
// ** 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
|