mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
feat: wip: mobile seeds page
This commit is contained in:
BIN
packages/web/assets/seeds_flowchart.png
Normal file
BIN
packages/web/assets/seeds_flowchart.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 109 KiB |
@@ -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 MetaGame’s labor token. <br />
|
||||
<br />
|
||||
People contribute towards creation of MetaGame, meanwhile generating
|
||||
XP & getting paid out on their XP generated - in Seeds.
|
||||
<br />
|
||||
<br />
|
||||
Here’s how it works (in Phase I*):
|
||||
<Image width="full" src={SeedsFlowChart} alignSelf="end" mt={4} />
|
||||
</Flex>
|
||||
</VStack>
|
||||
</PageContainer>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user