UNPKG

materio-mui-react-nextjs-admin-template-free

Version:

Most Powerful & Comprehensive Free MUI React NextJS Admin Dashboard Template built for developers! 🚀

25 lines (22 loc) • 812 B
// ** 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