-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAirJordans.js
More file actions
63 lines (58 loc) · 1.88 KB
/
AirJordans.js
File metadata and controls
63 lines (58 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import React from 'react';
import { withStyles } 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 CardMedia from '@material-ui/core/CardMedia';
import Button from '@material-ui/core/Button';
import Typography from '@material-ui/core/Typography';
const styles = {
card: {
maxWidth: 330,
height: 400,
padding: 0,
},
media: {
height: 180,
paddingTop: '56.25%', // 16:9
paddingBottom: 0
},
};
function AirJordans(props) {
const { classes } = props;
return (
<div>
<Card className={classes.card}>
<CardMedia
className={classes.media}
image="https://s3-us-west-1.amazonaws.com/kianna-portfolio/airjordans.png"
title="AirJordans"
/>
<CardContent>
<Typography gutterBottom variant="headline" component="h2">
AirJordans
</Typography>
<Typography component="p" style={{fontSize: '9pt', textAlign: 'left'}}>
System design of reviews microservice for short-term lodging listing page.
<br/>
<br/>
<div style={{fontSize: '8pt', color: 'black', textAlign: 'left'}}>
<div>Tech Stack: Postgres, Cassandra, New Relic, Loader.io, NGINX,
<i className="fab fa-docker fa-1x"></i>
<i className="fab fa-aws fa-1x"></i>
</div>
</div>
</Typography>
</CardContent>
<CardActions>
<Button size="small" color="primary">
<a target="_blank" rel="noopener noreferrer" href="https://github.com/airJordans/review-module" className="icons">
Learn More
</a>
</Button>
</CardActions>
</Card>
</div>
);
}
export default withStyles(styles)(AirJordans);