File size: 1,443 Bytes
1e92f2d |
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 64 |
import { Container, makeStyles, Typography } from "@material-ui/core";
import Carousel from "./Carousel";
const useStyles = makeStyles((theme) => ({
banner: {
backgroundImage: "url(./banner2.jpg)",
},
bannerContent: {
height: 400,
display: "flex",
flexDirection: "column",
paddingTop: 25,
justifyContent: "space-around",
},
tagline: {
display: "flex",
height: "40%",
flexDirection: "column",
justifyContent: "center",
textAlign: "center",
},
carousel: {
height: "50%",
display: "flex",
alignItems: "center",
},
}));
function Banner() {
const classes = useStyles();
return (
<div className={classes.banner}>
<Container className={classes.bannerContent}>
<div className={classes.tagline}>
<Typography
variant="h2"
style={{
fontWeight: "bold",
marginBottom: 15,
fontFamily: "Montserrat",
}}
>
Crypto Hunter
</Typography>
<Typography
variant="subtitle2"
style={{
color: "darkgrey",
textTransform: "capitalize",
fontFamily: "Montserrat",
}}
>
Get all the Info regarding your favorite Crypto Currency
</Typography>
</div>
<Carousel />
</Container>
</div>
);
}
export default Banner;
|