import { useTheme } from '@emotion/react'; import styled from '@emotion/styled'; import { Container, Grid, Typography } from '@mui/material'; import React from 'react' const CustomDiv = styled.div` background-color: ${(props) => props.theme.palette.primary.main}; height: 700px; width: 100%; display: flex; `; const CircleContainer = styled.div` width: 325px; height: 325px; border-radius: 50%; background-color: ${(props) => props.theme.palette.primary.dark}; /* Replace with your desired color */ display: flex; justify-content: center; align-items: center; font-size: 24px; /* Replace with your desired font size */ border-style: solid; border-color: purple; `; const HorizontalLine = styled.div` height: 2px; background-color: #FAE84E; /* Yellow color */ margin: 20px 0; /* Adjust the margin to position the line */ `; function MainPage() { return ( Empowerment for those who need it most Bitcoin is a grassroots technology for communities to build lasting wealth ); } export default MainPage