feat: wip: mobile seeds page

This commit is contained in:
vidvidvid
2022-02-13 22:04:29 +01:00
committed by Alec LaLonde
parent c4a06b04fa
commit 3facb7bd5f
2 changed files with 34 additions and 20 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

View File

@@ -1,4 +1,6 @@
import { Flex, LoadingState } from '@metafam/ds';
import { Flex, Heading, Image, LoadingState, VStack } from '@metafam/ds';
import Seeds from 'assets/menuIcon/seeds.svg';
import SeedsFlowChart from 'assets/seeds_flowchart.png';
import { PageContainer } from 'components/Container';
import { HeadComponent } from 'components/Seo';
import { useRouter } from 'next/router';
@@ -12,25 +14,37 @@ const SeedsPage: React.FC = () => {
}
return (
<PageContainer p={0}>
<HeadComponent
title="MetaGame Seeds Page"
description="seed description"
url="https://my.metagame.wtf/seeds"
/>
<Flex
w="full"
minH="100vh"
pl={[4, 8, 12]}
pr={[4, 8, 12]}
pb={[4, 8, 12]}
pt={200 - 72}
direction="column"
align="center"
zIndex={1}
>
Seeds page
</Flex>
<PageContainer py={8} px={4}>
<VStack w="100%" spacing={{ base: 4, md: 8 }}>
<HeadComponent
title="MetaGame Seeds Page"
description="seed description"
url="https://my.metagame.wtf/seeds"
/>
<Heading
size="3xl"
fontWeight={600}
color="white"
fontFamily="mono"
pb={4}
display="flex"
flexDir="row"
>
Seeds{' '}
<Image height={10} width={10} src={Seeds} alignSelf="end" ml={2} />
</Heading>
<Flex fontSize={18} flexDirection="column">
Seeds are MetaGames labor token. <br />
<br />
People contribute towards creation of MetaGame, meanwhile generating
XP & getting paid out on their XP generated - in Seeds.
<br />
<br />
Heres how it works (in Phase I*):
<Image width="full" src={SeedsFlowChart} alignSelf="end" mt={4} />
</Flex>
</VStack>
</PageContainer>
);
};