react-garden
Version:
React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.
25 lines (22 loc) • 802 B
JavaScript
// ** 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={{ mb: 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