35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
import * as React from 'react';
|
|
import Card from '@mui/material/Card';
|
|
import CardActions from '@mui/material/CardActions';
|
|
import CardContent from '@mui/material/CardContent';
|
|
import CardMedia from '@mui/material/CardMedia';
|
|
import Button from '@mui/material/Button';
|
|
import Typography from '@mui/material/Typography';
|
|
|
|
export default function Media() {
|
|
return (
|
|
<Card sx={{ mb: '15px' }}>
|
|
<CardMedia
|
|
sx={{ height: 140 }}
|
|
image="/images/contemplative-reptile.jpg"
|
|
title="green iguana"
|
|
/>
|
|
|
|
<CardContent>
|
|
<Typography gutterBottom variant="h5" component="div">
|
|
Lizard
|
|
</Typography>
|
|
|
|
<Typography variant="body2" color="text.secondary">
|
|
Lizards are a widespread group of squamate reptiles, with over 6,000
|
|
species, ranging across all continents except Antarctica
|
|
</Typography>
|
|
</CardContent>
|
|
|
|
<CardActions>
|
|
<Button size="small">Share</Button>
|
|
<Button size="small">Learn More</Button>
|
|
</CardActions>
|
|
</Card>
|
|
);
|
|
} |