diff --git a/packages/web/components/Seeds/Card.tsx b/packages/web/components/Seeds/Card.tsx new file mode 100644 index 00000000..55f4380c --- /dev/null +++ b/packages/web/components/Seeds/Card.tsx @@ -0,0 +1,101 @@ +import { + Box, + Button, + Flex, + Modal, + ModalBody, + ModalCloseButton, + ModalContent, + ModalFooter, + ModalHeader, + ModalOverlay, + Text, + useDisclosure, +} from '@metafam/ds'; +import ModalCardBg from 'assets/modal-bg.png'; +import SeedCardBg from 'assets/seed-card-bg.png'; + +type CardProps = { + title: string; + description: string; + Content: () => JSX.Element; +}; + +export const Card: React.FC = ({ title, description, Content }) => { + const { isOpen, onOpen, onClose } = useDisclosure(); + + return ( + + + + {title.toUpperCase()} + + {description} + + + + + + + + {title.toUpperCase()} + + + {Content && } + + + + + + + ); +}; diff --git a/packages/web/components/Seeds/cardsConfig.tsx b/packages/web/components/Seeds/cardsConfig.tsx new file mode 100644 index 00000000..f2345db2 --- /dev/null +++ b/packages/web/components/Seeds/cardsConfig.tsx @@ -0,0 +1,53 @@ +import { + BecomeAPatron, + BuyingAndSellingModal, + FAQ, + GetRankedModal, + JoinTheFund, + PlantingAndWatering, + UsefulnessOfSeedsModal, +} from './modals'; + +export const cardsConfig = [ + { + title: 'Usefulness of Seeds', + description: + 'A reward for those actively contributing to the creation of MetaGame - or much more?', + Content: UsefulnessOfSeedsModal, + }, + { + title: 'BUYING & SELLING Seeds', + description: + 'Looking to buy some Seeds? Want to sell some Seeds? Just follow these few simple steps', + Content: BuyingAndSellingModal, + }, + { + title: 'BECOME A PATRON', + description: + "Love the idea of MetaGame but don't got time to actively contribute? We've got you covered!", + Content: BecomeAPatron, + }, + { + title: 'PLANTING & WATERING SEEDS', + description: + 'Being a good player means planting Seeds & being a good patron means watering them.', + Content: PlantingAndWatering, + }, + { + title: 'GET RANKED!', + description: + 'Leaderboards are a thing! The higher you reach, the more fame, glory and perks await you!', + Content: GetRankedModal, + }, + { + title: 'JOIN THE SEED FUND', + description: + 'Donโ€™t feel like watering Seeds yourself? Worry not & let us carry the buckets ๐Ÿ™‚', + Content: JoinTheFund, + }, + { + title: 'FAQ', + description: 'Here are the most frequent questions about Seeds โ€” answered.', + Content: FAQ, + }, +]; diff --git a/packages/web/components/Seeds/modals.tsx b/packages/web/components/Seeds/modals.tsx new file mode 100644 index 00000000..55be166f --- /dev/null +++ b/packages/web/components/Seeds/modals.tsx @@ -0,0 +1,667 @@ +import { + Box, + Flex, + Image, + Link, + ListItem, + Text, + UnorderedList, +} from '@metafam/ds'; +import React, { useState } from 'react'; + +export const GetRankedModal = () => ( + + + As you might know already, the top ~56 of each; players & patrons, will be + ranked in leagues. Well, leagues come with their perks! + + + ๐Ÿฅ‰ Bronze Founder + ๐Ÿฅˆ Silver Founder + ๐Ÿฅ‡ Golden Founder + ๐Ÿ”˜ Platinum Founder + ๐Ÿ’Ž Diamond Founder + + + We have a bunch of ideas on what these ranked league perks could be: from + access to special channels & private AMAs, to interviews, unique NFTs & + utmost respect. + + + + But, before publishing a list, we'd love to hear from all of you - + + + what do you think the ranked league perks should be? ๐Ÿ™ƒ + + + +); + +export const UsefulnessOfSeedsModal = () => { + const [isOpenSpending, setIsOpenSpending] = useState(false); + const [isOpenStaking, setIsOpenStaking] = useState(false); + const [isOpenPlanting, setIsOpenPlanting] = useState(false); + + return ( + + + So far, the main thing Seeds are used for is rewarding contributors as a + means of bootstrapping. Not a very promising usecase in terms of token + value, we know! + + + But, we're building an entire gamified socioeconomic system, so finding + usecases for money shouldn't be much trouble ๐Ÿ˜ + + + So, lets look at some of the current & potential ways of using + Seeds! + + setIsOpenSpending(!isOpenSpending)} + fontWeight="bold" + my={4} + > +
+ ๐Ÿ’ธ Spending Seeds +
+
+ {isOpenSpending && ( + + + Things you can spend on now: + + + ๐Ÿ’ก Note: You need to be a member to access any of these + + + ๐Ÿ’ธ to get a shout-out in the podcast. + ๐Ÿ’ธ to have MetaGame tweet for you. + ๐Ÿ’ธ to get a shout-out in the newsletter. + + ๐Ÿ’ธ to buy some ListItemmited edition merchandise. + + + ๐Ÿ’ธ to get products & services from other players & guilds. + + + ๐Ÿ’ธ to get access to the + + Token Engineering + + course. + + ๐Ÿ’ธ to get some user testing sessions. + + ๐Ÿ’ธ to + + give away to good causes + + . โ˜บ๏ธ + + + + ๐Ÿ’ก Note: If you're interested in spending your Seeds on any of this, + ask about it; # + + ๐Ÿ’ธ-spending-seeds + + + + In the future: + + + ๐Ÿ’ธ for the subscription fee + + ๐Ÿ’ธ for fees if buying/selling things with other tokens + + ๐Ÿ’ธ to install an app in MetaGame + + ๐Ÿ’ธ for posting quests & raids - if in self-interest + + ๐Ÿ’ธ for access to courses + ๐Ÿ’ธ to pay for likes/upvotes + ๐Ÿ’ธ to have your message displayed on the ticker + + ๐Ÿ’ธ to buy themes, addons, in-game skins & other cosmetics + + ๐Ÿ’ธ to post role openings or boost them + ๐Ÿ’ธ to boost your discovery position + + ๐Ÿ’ธ to pay for other MetaFam services; like advising, building or + shilling + + + + + )} + setIsOpenStaking(!isOpenStaking)} + fontWeight="bold" + my={4} + > +
+ ๐Ÿฅฉ Staking Seeds +
+
+ {isOpenStaking && ( + + + Here are some of the things people might be required to stake Seeds + for. + + + As you might already know; in MetaGame, we don't believe in rating + humans. + + + We're building a future we want to live in, and a future in + which humans rate each other on a 1-5 star system is definitely + not the kind of future we want to live in. + + + Instead, players of MetaGame will be required to stake some of their + skin in the game. + + + ๐Ÿฅฉ to take quests + ๐Ÿฅฉ for your friend when onboarding them + ๐Ÿฅฉ for your guild to enter + ๐Ÿฅฉ as collateral for your personal token + ๐Ÿฅฉ to enter a contract with someone + ๐Ÿฅฉ when claiming the metafam.eth subdomain + ๐Ÿฅฉ when claiming the @metagame.wtf email + ๐Ÿฅฉ on your project or product reviews + + ๐Ÿฅฉ on content curation (ponzinomics) +
    + + writing reviews & recommendations will require staking + +
+
+
+ +
+ )} + setIsOpenPlanting(!isOpenPlanting)} + fontWeight="bold" + my={4} + > +
+ ๐ŸŒฑ Planting Seeds +
+
+ {isOpenPlanting && ( + + + If you're confused as to what โ€œplanting Seedsโ€ means, it means using + your Seeds by putting them into the + + + Balancer pool aka the Seed plantation. + + + + + + ๐ŸŒฑ to be eligible for MetaFam-only limited edition merch + + + ๐ŸŒฑ to be eligible for random drops & the Phase II token + + ๐ŸŒฑ to stay in the game as a patron + ๐ŸŒฑ to appear on the Patrons leaderboard + + ๐ŸŒฑ๐ŸŒฑ for guilds to appear higher on the leaderboard + + + ๐ŸŒฑ๐ŸŒฑ๐ŸŒฑ to appear higher on the Patrons leaderboard ๐Ÿ™ƒ + + + + )} +
+ ); +}; + +export const BuyingAndSellingModal = () => ( + + + ๐Ÿ’ก Note: No need to buy Seeds to become a patron, you can just + water them. + + If you want to buy some Seeds: + + First, you'll need to have some tokens on Polygon + + Then you can go to the + + Seeds plantation + + & click the โ€œtradeโ€ tab middle top +
    + + Seeds not showing up? Search by + 0x30cf203b48edaa42c3b4918e955fed26cd012a3f + +
+
+ + Pick the amount you want to buy & watch for slippage + + Preview trade, confirm & swap ๐Ÿ™‚ + + That's it! Now go to your MetaMask, scroll down to โ€œadd custom tokenโ€ + & paste the token address: + 0x30cf203b48edaa42c3b4918e955fed26cd012a3f + +
+ If you want to sell your Seeds: + + + You'll still need some Matic on Polygon first.. Either + + buy some + + or + + ask on discord + + . + + Take the same steps as the buyers above ๐Ÿ™‚ + +
+); + +export const BecomeAPatron = () => ( + + + Though some usecases exist, they're not meaningfully contributing to the + treasury yet & the rest are just ideas. Main reasons you'd want to + become a patron right now: + + + + + Because you love the idea of MetaGame & want to see it succeed. + +
    + + + Reading about it made you go โ€œthis is everything I've ever wantedโ€ + or at least โ€œfuck yeah, this is epic!โ€ + + +
+
+ + You want to become a part of MetaGame but you don't have time to + actively contribute. + + + Not convinced? +
    + Maybe watch this video +
+
+
+ + + + There are 2 ways to become a patron: + + + Join the + + Seed Fund raise + + + Water the Seeds yourself ๐Ÿ‘‡ + +
+); + +export const PlantingAndWatering = () => ( + + So you've decided to become a patron? + + First, you'll need some tokens on Polygon. + + + Ideally, it would be WETH & RAI. + + If you only got Matic, no worries, you can just swap it for WETH & + RAI. + + + If you don't have anything... +
    + + Either + + bridge + + some from mainnet + +
+
    + + Or obtain Matic in + + any number of ways + + +
+
+
+ + Then, you'll need to use WETH & RAI to + + water the Seeds + + . + + + + How much should you water them? +
    + + The minimal requirement to join as a patron is 8pSeeds which is + roughly $150. + +
+
    + + Beyond that, you are free to water them however much you want if you + wish a high position in the ranked league of patrons, but be careful + not to slip. + +
+
+ + After that, you will need to make sure to water them once every so + often. You will be notified over + + the newsletter + {' '} + or we will do it for you, if you join the Seed Fund ๐Ÿ™ƒ +
    + + The number of patrons in + + Phase I + + is limited to 150, meaning, you will need to be watering them at + least as much as the 150th person on the leaderboard if you wish to + remain a patron until the end of + + Phase I + + (2023). + +
+
    + + Do note that even if you drop off the leaderboard, you will still + get your single digit season achievement NFT for being an early + patron & etched in the lore as well as remain among the first + ones to get invited back in Phase II when MetaGame scales above + + The 300 of MetaGame + + . + +
+
+
+
+); + +export const JoinTheFund = () => ( + + Wish to skip the hassle of watering Seeds on your own? + No worries, we got you covered! + + We're making it easy for people to do just that by launching the Seed Fund + DAO. + + + You will only need to approve of MetaGame's monthly progress reports & + we'll be taking care of the rest. No more carrying the buckets from the + well to the fields! + + + Add some mainnet Ether + Approve our progress & proposals + We water the Seed plantation for you + + + Join here + {' '} + if interested ๐Ÿ‘€ + + + +); + +export const FAQ = () => { + const [isOpenAccomplish, setIsOpenAccomplish] = useState(false); + const [isOpenInfinity, setIsOpenInfinity] = useState(false); + const [isOpenGrow, setIsOpenGrow] = useState(false); + const [isOpenCap, setIsOpenCap] = useState(false); + + return ( +
+ setIsOpenAccomplish(!isOpenAccomplish)} my={4}> +
+ What have you accomplished so far? +
+
+ {isOpenAccomplish && ( + + Many things! Go read the fundraise + + announcement post + + , pitch video or dig through the website itself. + + )} + setIsOpenInfinity(!isOpenInfinity)} my={4}> +
+ Will you just keep on minting Seeds to infinity? +
+
+ {isOpenInfinity && ( + + Not likely! The idea is that MetaGame will go + + through 3 phases + + ; starting with Seeds, growing into Trees in + Phase II aka The Growth Phase before transitioning + to Phase III - where Trees bear the fruits of our labor & weโ€™re + able to reward contributors with MetaGameโ€™s incoming streams without + having to mint new tokens. + + )} + setIsOpenGrow(!isOpenGrow)} my={4}> +
+ Why should the price of Seeds grow? +
+
+ {isOpenGrow && ( + <> + ๐ŸŒŠ Seed Watering Streams + + + all fees & payments received by MetaGame go into sustaining + the price. + + + people subscribe to buying Seeds for any of the above reasons or + others. + + + projects we helped incubate share a % of their tokens? + + + + )} + + setIsOpenCap(!isOpenCap)} my={4}> +
+ Whatโ€™s market cap? +
+
+ {isOpenCap && ( + + At the time of writing this post (February 2022), the market cap was + $600k + + )} +
+ ); +}; diff --git a/packages/web/pages/seeds.tsx b/packages/web/pages/seeds.tsx index 19585dcf..a5bad892 100644 --- a/packages/web/pages/seeds.tsx +++ b/packages/web/pages/seeds.tsx @@ -6,26 +6,17 @@ import { Grid, Heading, Image, - Link, ListItem, LoadingState, - Modal, - ModalBody, - ModalCloseButton, - ModalContent, - ModalFooter, - ModalHeader, - ModalOverlay, Text, UnorderedList, - useDisclosure, VStack, } from '@metafam/ds'; -import ModalCardBg from 'assets/modal-bg.png'; import Octopus from 'assets/octopus.png'; -import SeedCardBg from 'assets/seed-card-bg.png'; import SeedsFlowChart from 'assets/seeds-flowchart.png'; import { PageContainer } from 'components/Container'; +import { Card } from 'components/Seeds/Card'; +import { cardsConfig } from 'components/Seeds/cardsConfig'; import { HeadComponent } from 'components/Seo'; import { useRouter } from 'next/router'; import React, { useRef } from 'react'; @@ -95,7 +86,7 @@ const SeedsPage: React.FC = () => { templateColumns={['auto', 'auto', '1fr 1fr', '1fr 1fr 1fr']} gap={6} > - {cardsData.map(({ title, description, Content }) => ( + {cardsConfig.map(({ title, description, Content }) => ( ))} @@ -118,789 +109,4 @@ const SeedsPage: React.FC = () => { ); }; -type CardProps = { - title: string; - description: string; - Content: () => JSX.Element; -}; - -const Card: React.FC = ({ title, description, Content }) => { - const { isOpen, onOpen, onClose } = useDisclosure(); - - return ( - - - - {title.toUpperCase()} - - {description} - - - - - - - - {title.toUpperCase()} - - - {Content && } - - - - - - - ); -}; - -const GetRankedModal = () => ( - - - As you might know already, the top ~56 of each; players & patrons, will be - ranked in leagues. Well, leagues come with their perks! - - - ๐Ÿฅ‰ Bronze Founder - ๐Ÿฅˆ Silver Founder - ๐Ÿฅ‡ Golden Founder - ๐Ÿ”˜ Platinum Founder - ๐Ÿ’Ž Diamond Founder - - - We have a bunch of ideas on what these ranked league perks could be: from - access to special channels & private AMAs, to interviews, unique NFTs & - utmost respect. - - - - But, before publishing a list, we'd love to hear from all of you - - - - what do you think the ranked league perks should be? ๐Ÿ™ƒ - - - -); - -const UsefulnessOfSeedsModal = () => { - const [isOpenSpending, setIsOpenSpending] = React.useState(false); - const [isOpenStaking, setIsOpenStaking] = React.useState(false); - const [isOpenPlanting, setIsOpenPlanting] = React.useState(false); - - return ( - - - So far, the main thing Seeds are used for is rewarding contributors as a - means of bootstrapping. Not a very promising usecase in terms of token - value, we know! - - - But, we're building an entire gamified socioeconomic system, so finding - usecases for money shouldn't be much trouble ๐Ÿ˜ - - - So, lets look at some of the current & potential ways of using - Seeds! - - setIsOpenSpending(!isOpenSpending)} - fontWeight="bold" - my={4} - > -
- ๐Ÿ’ธ Spending Seeds -
-
- {isOpenSpending && ( - - - Things you can spend on now: - - - ๐Ÿ’ก Note: You need to be a member to access any of these - - - ๐Ÿ’ธ to get a shout-out in the podcast. - ๐Ÿ’ธ to have MetaGame tweet for you. - ๐Ÿ’ธ to get a shout-out in the newsletter. - - ๐Ÿ’ธ to buy some ListItemmited edition merchandise. - - - ๐Ÿ’ธ to get products & services from other players & guilds. - - - ๐Ÿ’ธ to get access to the - - Token Engineering - - course. - - ๐Ÿ’ธ to get some user testing sessions. - - ๐Ÿ’ธ to - - give away to good causes - - . โ˜บ๏ธ - - - - ๐Ÿ’ก Note: If you're interested in spending your Seeds on any of this, - ask about it; # - - ๐Ÿ’ธ-spending-seeds - - - - In the future: - - - ๐Ÿ’ธ for the subscription fee - - ๐Ÿ’ธ for fees if buying/selling things with other tokens - - ๐Ÿ’ธ to install an app in MetaGame - - ๐Ÿ’ธ for posting quests & raids - if in self-interest - - ๐Ÿ’ธ for access to courses - ๐Ÿ’ธ to pay for likes/upvotes - ๐Ÿ’ธ to have your message displayed on the ticker - - ๐Ÿ’ธ to buy themes, addons, in-game skins & other cosmetics - - ๐Ÿ’ธ to post role openings or boost them - ๐Ÿ’ธ to boost your discovery position - - ๐Ÿ’ธ to pay for other MetaFam services; like advising, building or - shilling - - - - - )} - setIsOpenStaking(!isOpenStaking)} - fontWeight="bold" - my={4} - > -
- ๐Ÿฅฉ Staking Seeds -
-
- {isOpenStaking && ( - - - Here are some of the things people might be required to stake Seeds - for. - - - As you might already know; in MetaGame, we don't believe in rating - humans. - - - We're building a future we want to live in, and a future in - which humans rate each other on a 1-5 star system is definitely - not the kind of future we want to live in. - - - Instead, players of MetaGame will be required to stake some of their - skin in the game. - - - ๐Ÿฅฉ to take quests - ๐Ÿฅฉ for your friend when onboarding them - ๐Ÿฅฉ for your guild to enter - ๐Ÿฅฉ as collateral for your personal token - ๐Ÿฅฉ to enter a contract with someone - ๐Ÿฅฉ when claiming the metafam.eth subdomain - ๐Ÿฅฉ when claiming the @metagame.wtf email - ๐Ÿฅฉ on your project or product reviews - - ๐Ÿฅฉ on content curation (ponzinomics) -
    - - writing reviews & recommendations will require staking - -
-
-
- -
- )} - setIsOpenPlanting(!isOpenPlanting)} - fontWeight="bold" - my={4} - > -
- ๐ŸŒฑ Planting Seeds -
-
- {isOpenPlanting && ( - - - If you're confused as to what โ€œplanting Seedsโ€ means, it means using - your Seeds by putting them into the - - - Balancer pool aka the Seed plantation. - - - - - - ๐ŸŒฑ to be eligible for MetaFam-only limited edition merch - - - ๐ŸŒฑ to be eligible for random drops & the Phase II token - - ๐ŸŒฑ to stay in the game as a patron - ๐ŸŒฑ to appear on the Patrons leaderboard - - ๐ŸŒฑ๐ŸŒฑ for guilds to appear higher on the leaderboard - - - ๐ŸŒฑ๐ŸŒฑ๐ŸŒฑ to appear higher on the Patrons leaderboard ๐Ÿ™ƒ - - - - )} -
- ); -}; - -const BuyingAndSellingModal = () => ( - - - ๐Ÿ’ก Note: No need to buy Seeds to become a patron, you can just - water them. - - If you want to buy some Seeds: - - First, you'll need to have some tokens on Polygon - - Then you can go to the - - Seeds plantation - - & click the โ€œtradeโ€ tab middle top -
    - - Seeds not showing up? Search by - 0x30cf203b48edaa42c3b4918e955fed26cd012a3f - -
-
- - Pick the amount you want to buy & watch for slippage - - Preview trade, confirm & swap ๐Ÿ™‚ - - That's it! Now go to your MetaMask, scroll down to โ€œadd custom tokenโ€ - & paste the token address: - 0x30cf203b48edaa42c3b4918e955fed26cd012a3f - -
- If you want to sell your Seeds: - - - You'll still need some Matic on Polygon first.. Either - - buy some - - or - - ask on discord - - . - - Take the same steps as the buyers above ๐Ÿ™‚ - -
-); - -const BecomeAPatron = () => ( - - - Though some usecases exist, they're not meaningfully contributing to the - treasury yet & the rest are just ideas. Main reasons you'd want to - become a patron right now: - - - - - Because you love the idea of MetaGame & want to see it succeed. - -
    - - - Reading about it made you go โ€œthis is everything I've ever wantedโ€ - or at least โ€œfuck yeah, this is epic!โ€ - - -
-
- - You want to become a part of MetaGame but you don't have time to - actively contribute. - - - Not convinced? -
    - Maybe watch this video -
-
-
- - - - There are 2 ways to become a patron: - - - Join the - - Seed Fund raise - - - Water the Seeds yourself ๐Ÿ‘‡ - -
-); - -const PlantingAndWatering = () => ( - - So you've decided to become a patron? - - First, you'll need some tokens on Polygon. - - - Ideally, it would be WETH & RAI. - - If you only got Matic, no worries, you can just swap it for WETH & - RAI. - - - If you don't have anything... -
    - - Either - - bridge - - some from mainnet - -
-
    - - Or obtain Matic in - - any number of ways - - -
-
-
- - Then, you'll need to use WETH & RAI to - - water the Seeds - - . - - - - How much should you water them? -
    - - The minimal requirement to join as a patron is 8pSeeds which is - roughly $150. - -
-
    - - Beyond that, you are free to water them however much you want if you - wish a high position in the ranked league of patrons, but be careful - not to slip. - -
-
- - After that, you will need to make sure to water them once every so - often. You will be notified over - - the newsletter - {' '} - or we will do it for you, if you join the Seed Fund ๐Ÿ™ƒ -
    - - The number of patrons in - - Phase I - - is limited to 150, meaning, you will need to be watering them at - least as much as the 150th person on the leaderboard if you wish to - remain a patron until the end of - - Phase I - - (2023). - -
-
    - - Do note that even if you drop off the leaderboard, you will still - get your single digit season achievement NFT for being an early - patron & etched in the lore as well as remain among the first - ones to get invited back in Phase II when MetaGame scales above - - The 300 of MetaGame - - . - -
-
-
-
-); - -const JoinTheFund = () => ( - - Wish to skip the hassle of watering Seeds on your own? - No worries, we got you covered! - - We're making it easy for people to do just that by launching the Seed Fund - DAO. - - - You will only need to approve of MetaGame's monthly progress reports & - we'll be taking care of the rest. No more carrying the buckets from the - well to the fields! - - - Add some mainnet Ether - Approve our progress & proposals - We water the Seed plantation for you - - - Join here - {' '} - if interested ๐Ÿ‘€ - - - -); - -const FAQ = () => { - const [isOpenAccomplish, setIsOpenAccomplish] = React.useState(false); - const [isOpenInfinity, setIsOpenInfinity] = React.useState(false); - const [isOpenGrow, setIsOpenGrow] = React.useState(false); - const [isOpenCap, setIsOpenCap] = React.useState(false); - - return ( -
- setIsOpenAccomplish(!isOpenAccomplish)} my={4}> -
- What have you accomplished so far? -
-
- {isOpenAccomplish && ( - - Many things! Go read the fundraise - - announcement post - - , pitch video or dig through the website itself. - - )} - setIsOpenInfinity(!isOpenInfinity)} my={4}> -
- Will you just keep on minting Seeds to infinity? -
-
- {isOpenInfinity && ( - - Not likely! The idea is that MetaGame will go - - through 3 phases - - ; starting with Seeds, growing into Trees in - Phase II aka The Growth Phase before transitioning - to Phase III - where Trees bear the fruits of our labor & weโ€™re - able to reward contributors with MetaGameโ€™s incoming streams without - having to mint new tokens. - - )} - setIsOpenGrow(!isOpenGrow)} my={4}> -
- Why should the price of Seeds grow? -
-
- {isOpenGrow && ( - <> - ๐ŸŒŠ Seed Watering Streams - - - all fees & payments received by MetaGame go into sustaining - the price. - - - people subscribe to buying Seeds for any of the above reasons or - others. - - - projects we helped incubate share a % of their tokens? - - - - )} - - setIsOpenCap(!isOpenCap)} my={4}> -
- Whatโ€™s market cap? -
-
- {isOpenCap && ( - - At the time of writing this post (February 2022), the market cap was - $600k - - )} -
- ); -}; - -const cardsData = [ - { - title: 'Usefulness of Seeds', - description: - 'Currently used to reward players who actively contribute to building MetaGame, in the future seeds will be so much more useful!', - Content: UsefulnessOfSeedsModal, - }, - { - title: 'BUYING & SELLING Seeds', - description: 'Trading Seeds is easy! Just follow these few simple steps.', - Content: BuyingAndSellingModal, - }, - { - title: 'BECOME A PATRON', - description: - "Love the idea of MetaGame & want to see it succeed, but don't have time or skill to actively contribute? We've got you covered.", - Content: BecomeAPatron, - }, - { - title: 'PLANTING & WATERING SEEDS', - description: - 'Being a good patron means regularly watering your Seeds, and planting new ones, every once in a while.', - Content: PlantingAndWatering, - }, - { - title: 'GET RANKED!', - description: - 'Top 56 players are ranked in leagues. The higher you reach, the more fame, glory and perks await you!', - Content: GetRankedModal, - }, - { - title: 'JOIN THE SEED FUND', - description: - "Don't feel like watering Seeds yourself? Worry not, you can still be a caring patron, and leave all the work to us.", - Content: JoinTheFund, - }, - { - title: 'FAQ', - description: 'Here are the most frequent questions about Seeds โ€” answered.', - Content: FAQ, - }, -]; - export default SeedsPage;