import { Box, Button, Container, Text } from "@chakra-ui/react"; import banner from "../assets/communityBanner.webp"; const BannerContent = [ { heading1: `Welcome To The`, heading2: `Rubix Community`, }, { subheading: `This is a space for enterprises, dApp developers, stakeholders and blockchain advocates to aggregate resources and ideas to make a difference through our green blockchain technology.`, }, { btn: `Explore our community`, }, ]; const CommunityBanner = () => { return ( {BannerContent[0].heading1} {" "}
{BannerContent[0].heading2}
{BannerContent[1].subheading}
); }; export default CommunityBanner;