Files
TheGame/packages/web/utils/menuLinks.ts
2021-09-10 12:11:26 +02:00

162 lines
4.5 KiB
TypeScript

// in utils
export interface MenuLinkItem {
title: string;
explainerText: string;
url: string;
icon: string;
}
export interface MenuLinkSet {
label: string;
menuItems: MenuLinkItem[];
}
export const MenuSectionLinks: MenuLinkSet[] = [
{
label: 'community',
menuItems: [
{
title: 'Players',
explainerText:
'Find players of MetaGame; their NFTs, their skills & whatever else they put on there',
url: '/players',
icon: 'players',
},
{
title: 'Patrons',
explainerText:
'Check the patrons of MetaGame; the ones supporting MetaGame by buying Seeds',
url: '/patrons',
icon: 'patrons',
},
{
title: 'Discord',
explainerText: 'Engage in conversations with the MetaGame community ',
url: 'https://discord.gg/VYZPBnx',
icon: 'discord',
},
{
title: 'Guilds',
explainerText:
'Discover the guilds of MetaGame; groups of players set around more specific goals',
url: '/guilds',
icon: 'guilds',
},
{
title: 'Alliances',
explainerText:
'Explore the alliances of MetaGame; groups of guilds spanning across the metaverse',
url: 'https://wiki.metagame.wtf/docs/great-houses/house-of-daos',
icon: 'alliances',
},
{
title: 'Forum',
explainerText:
'Take part in slower & more thoughtful conversations on the forum',
url: 'https://forum.metagame.wtf/',
icon: 'forum',
},
],
},
{
label: 'learn',
menuItems: [
{
title: 'MetaGame Wiki',
explainerText:
'New to MetaGame? This is the first thing you should dive deep into',
url: 'https://wiki.metagame.wtf/docs/wtf-is-metagame/wtf-is-metagame',
icon: 'metagamewiki',
},
{
title: 'Playbooks',
explainerText:
'Playbooks are short tutorials on achieving greatness, written by other players',
url: 'https://wiki.metagame.wtf/docs/playbooks/browse',
icon: 'playbooks',
},
{
title: 'Skill Trees',
explainerText:
'Skill Trees are meant to help people discover paths of self-development',
url: 'https://wiki.metagame.wtf/',
icon: 'learn',
},
{
title: 'Welcome to MetaGame',
explainerText:
'Just joined MetaGame? Check this for learning about how to get started',
url: 'https://wiki.metagame.wtf/',
icon: 'welcometometagame',
},
{
title: 'The Great Houses',
explainerText:
'The Great Houses are here to give people a meta view of different areas of interest',
url: 'https://wiki.metagame.wtf/docs/great-houses/house-of-daos',
icon: 'thegreathouses',
},
{
title: 'Asketh',
explainerText:
'Asketh is a place for players of MetaGame to ask whatever question they might have',
url: 'https://wiki.metagame.wtf/',
icon: 'asketh',
},
],
},
{
label: 'contribute',
menuItems: [
{
title: 'Roles',
explainerText:
'Find about all roles in MetaGame, see which ones are open & how to play them',
url:
'https://wiki.metagame.wtf/docs/enter-metagame/roles-in-metagame#main-roles',
icon: 'roles',
},
{
title: 'Raids',
explainerText:
'See which raids are currently ongoing, learn more about them & get involved',
url: 'https://wiki.metagame.wtf/docs/enter-metagame/navigation-board',
icon: 'raids',
},
{
title: 'Quests',
explainerText:
'Take a look at available quest and claim ones that suit you best',
url: '/quests',
icon: 'quests',
},
],
},
{
label: 'invest',
menuItems: [
{
title: 'Seed',
explainerText:
'Find out all about the SEEDs; why, where & how you should buy them',
url: 'https://wiki.metagame.wtf/docs/how-does-it-work/xp',
icon: 'seeds',
},
{
title: 'Grants',
explainerText:
'Find cool projects & people you could support financially',
url: 'https://wiki.metagame.wtf/',
icon: 'grants',
},
{
title: 'Balancer Pool',
explainerText: 'Plant your SEEDs and watch them grow',
url:
'https://pools.balancer.exchange/#/pool/0xea05a15dbce2eb543ffda16950e95b2bd2e40d0e/',
icon: 'invest',
},
],
},
];