2021-06-20 13:39:00 +02:00
|
|
|
import React from 'react';
|
|
|
|
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
import Card from '@material-ui/core/Card';
|
|
|
|
import CardActions from '@material-ui/core/CardActions';
|
|
|
|
import CardContent from '@material-ui/core/CardContent';
|
|
|
|
import Button from '@material-ui/core/Button';
|
|
|
|
import Typography from '@material-ui/core/Typography';
|
2021-06-20 15:49:56 +02:00
|
|
|
import Link from 'next/link'
|
2021-06-20 13:39:00 +02:00
|
|
|
|
|
|
|
const useStyles = makeStyles({
|
|
|
|
root: {
|
|
|
|
minWidth: 275,
|
|
|
|
},
|
|
|
|
bullet: {
|
|
|
|
display: 'inline-block',
|
|
|
|
margin: '0 2px',
|
|
|
|
transform: 'scale(0.8)',
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
fontSize: 14,
|
|
|
|
},
|
|
|
|
pos: {
|
|
|
|
marginBottom: 12,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export default function CardContainer(props) {
|
|
|
|
const classes = useStyles();
|
|
|
|
|
|
|
|
return (
|
2021-06-20 15:49:56 +02:00
|
|
|
<a href={props.link}>
|
2021-06-21 08:19:53 +02:00
|
|
|
<Card className={classes.root} style={{ background: '#1F1B24', border: '2px solid #00c7b6' }}>
|
2021-06-20 15:49:56 +02:00
|
|
|
<CardContent>
|
|
|
|
<Typography variant="h5" component="h2">
|
|
|
|
{props.title}
|
|
|
|
</Typography>
|
|
|
|
<Typography variant="body2" component="p">
|
|
|
|
{props.children}
|
|
|
|
</Typography>
|
|
|
|
</CardContent>
|
|
|
|
<CardActions>
|
|
|
|
<Button size="small">Learn More</Button>
|
|
|
|
</CardActions>
|
|
|
|
</Card>
|
|
|
|
</a>
|
2021-06-20 13:39:00 +02:00
|
|
|
);
|
|
|
|
}
|