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 (
Crypto Hunter Get all the Info regarding your favorite Crypto Currency
); } export default Banner;