small ui fixed

This commit is contained in:
Tommy
2022-01-04 04:45:56 +00:00
committed by vidvidvid
parent 1961f5bdf8
commit 3c621e1986
2 changed files with 12 additions and 9 deletions

View File

@@ -24,7 +24,7 @@ function Together() {
justifyContent="center"
maxWidth="1200px"
alignItems="center"
>
<Box
fontSize="48px"
@@ -35,16 +35,15 @@ function Together() {
bgClip='text'
maxWidth="1200px"
display="inline"
pb = "35px"
pt = "130px"
textAlign = "center"
pb="35px"
pt="130px"
textAlign="center"
>
<Text pb = "50px"> We are bringing together the people & building blocks aligned on the idea of creating a new kind of society.</Text>
<Text pb = "50px"> One that is optimized for human wellbeing rather than profit.</Text>
<Text pb = "50px">One that revolves around solving problems & living well, in balance with nature.</Text>
<Text pb="50px"> We are bringing together the people & building blocks aligned on the idea of creating a new kind of society.</Text>
<Text pb="50px"> One that is optimized for human wellbeing rather than profit.</Text>
<Text pb="50px">One that revolves around solving problems & living well, in balance with nature.</Text>
</Box>
</Container>
</Box>
);

View File

@@ -6,6 +6,8 @@ import Revolution from '../components/Landing/Revolution';
import WildWeb from '../components/Landing/WildWeb';
import Frontier from '../components/Landing/Frontier';
import Together from '../components/Landing/Together';
import WhatWeDo from '../components/Landing/WhatWeDo';
import Optimal from '../components/Landing/Optimal';
function Landing(): JSX.Element {
return <div>
@@ -16,6 +18,8 @@ function Landing(): JSX.Element {
<WildWeb />
<Frontier />
<Together />
<WhatWeDo />
<Optimal />
</div>;
}