import { Box, Button, Container, Text } from "@chakra-ui/react"; import banner from "../../assets/images/whitePaperBg.png"; const SectionContent = { heading: `The Rubix White paper`, subContent: `Discover the endless potential of how the Rubix protocol can be used.`, btnContent: `Click to Download`, }; const WhitePaper = () => { return ( {SectionContent.heading} {SectionContent.subContent} ); }; export default WhitePaper;