mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
61 lines
1.5 KiB
TypeScript
61 lines
1.5 KiB
TypeScript
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:
|
||
'Don’t 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,
|
||
},
|
||
];
|