import { Box, Button, Container, Text } from "@chakra-ui/react"; import banner from "../../assets/images/moreBanner.png"; const SectionContent = { heading: `Connect with us to learn more!`, subContent: `With countless applications, there's a place for everyone in the Rubix community.`, btnContent: `Contact Us`, btnBild: "Build with Rubix", }; const LearnMore = () => { return ( {SectionContent.heading} {SectionContent.subContent} ); }; export default LearnMore;