Files
TheGame/packages/web/components/Seeds/cardsConfig.tsx
2022-02-22 22:11:42 -07:00

61 lines
1.5 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import {
BecomeAPatron,
BuyingAndSelling,
FAQ,
GetRanked,
JoinTheFund,
PlantingAndWatering,
UsefulnessOfSeeds,
WTFisXP,
} from './modals';
export const cardsConfig = [
{
title: 'WTF is XP?',
description:
'XP is a unit of contribution to MetaGame, measured by SourceCred.',
Content: WTFisXP,
},
{
title: 'Usefulness of Seeds',
description:
'A reward for those actively contributing to the creation of MetaGame - or much more?',
Content: UsefulnessOfSeeds,
},
{
title: 'Become a Patron',
description:
"Love the idea of MetaGame but don't have time to actively contribute? We've got you covered!",
Content: BecomeAPatron,
},
{
title: 'Buying & Selling Seeds',
description:
'Looking to buy some Seeds? Want to sell some Seeds? Just follow these few simple steps',
Content: BuyingAndSelling,
},
{
title: 'PLANTING & WATERING SEEDS',
description:
'Being a good player means planting Seeds & being a good patron means watering them.',
Content: PlantingAndWatering,
},
{
title: 'JOIN THE SEED FUND',
description:
'Dont feel like watering Seeds yourself? Worry not & let us carry the buckets 🙂',
Content: JoinTheFund,
},
{
title: 'GET RANKED!',
description:
'Leaderboards are a thing! The higher you reach, the more fame, glory and perks await you!',
Content: GetRanked,
},
{
title: 'FAQ',
description: 'Here are the most frequent questions about Seeds — answered.',
Content: FAQ,
},
];