import { Box, Button, Container, Text } from "@chakra-ui/react"; import banner from "../../assets/images/moreBanner.png"; import { Link } from "react-router-dom"; const SectionContent = { heading: `Connect with us to learn more!`, subContent: `With minimal computing power and curiosity to explore Web3 and its potential, anyone can build with the Rubix community.`, btnContent: `Contact Us`, }; const LearnMore = () => { return ( {SectionContent.heading} {SectionContent.subContent} ); }; export default LearnMore;