Skip to content

Instantly share code, notes, and snippets.

@korrio
Created October 27, 2021 08:50
Show Gist options
  • Save korrio/6c32ac5c01d7fcf7ea1b842a6d082a30 to your computer and use it in GitHub Desktop.
Save korrio/6c32ac5c01d7fcf7ea1b842a6d082a30 to your computer and use it in GitHub Desktop.
menu.ts
import { MenuEntry } from 'the-vonder-uikit'
const config: MenuEntry[] = [{
label: 'Home',
icon: 'HomeIcon',
href: '/',
},
{
label: 'Stats',
icon: 'InfoIcon',
href: '/info',
},
{
label: 'DEX',
icon: 'ExchangeIcon',
items: [{
label: 'Express (BKC->BSC)',
href: 'https://express.vonder.finance/',
},
{
label: 'Mint VUSD (BSC)',
href: 'https://x.vonderswap.finance/',
},
{
label: 'Exchange (BKC)',
href: 'https://exchange.vonder.finance/#/swap',
},
{
label: 'Liquidity (BKC)',
href: 'https://exchange.vonder.finance/#/pool',
},
]
},
{
label: 'Farms',
icon: 'FarmIcon',
items: [{
label: 'Bitkub Chain',
href: '/farms',
},
{
label: 'Binance Smart Chain',
href: 'https://app.vonderswap.finance/farm',
}
]
},
{
label: 'KKUB Pools',
icon: 'PoolIcon',
href: '/pools',
},
// {
// label: 'Oceans',
// icon: 'WaveIcon',
// href: '/oceans',
// },
// {
// label: 'Game',
// icon: 'NftIcon',
// href: '/game',
// },
{
label: '$VONtery™',
icon: 'TicketIcon',
items: [{
label: 'NFT Collection',
href: '/vonterynft',
},
{
label: 'VONtery (VON)',
href: '/vontery',
},
{
label: 'VONtery (KKUB)',
href: 'https://kub.vonder.finance/kkub',
},
{
label: 'VONtery (TUK)',
href: 'https://tuk.vonder.finance/tuk',
},
{
label: 'VONtery (kLorem)',
href: 'https://lorem.vonder.finance/klorem',
}
]
},
// {
// label: 'Launchpad (IDOs)',
// icon: 'HomeIcon',
// href: '/ido',
// },
// {
// label: 'Onboard auditing by Valix ✅',
// icon: 'HomeIcon',
// href: 'https://valix.io',
// },
// {
// label: 'NFT',
// icon: 'NftIcon',
// href: '/nft',
// },
// {
// label: 'Price Graph',
// icon: 'GraphIcon',
// href: '/graph',
// },
{
label: 'Chart',
icon: 'ChartIcon',
href: 'https://kub.loremboard.finance/chart/VON',
},
{
label: 'Portfolio',
icon: 'PortfolioIcon',
href: 'https://kub.loremboard.finance/dashboard',
},
{
label: 'Social',
icon: 'MoreIcon',
items: [{
label: 'Twitter',
href: 'https://twitter.com/vonderfinance',
},
{
label: 'Telegram',
href: 'https://t.me/vonderfinance',
},
{
label: 'Medium',
href: 'https://blog.vonder.finance',
},
{
label: 'Github',
href: 'https://github.com/vonderfinance',
},
{
label: 'Gitbook',
href: 'https://docs.vonder.finance',
},
],
},
// {
// label: 'More',
// icon: 'MoreIcon',
// items: [
// // {
// // label: 'Voting',
// // href: '',
// // },
// {
// label: 'Github',
// href: 'https://github.com/saltswap/',
// icon: 'GithubIcon',
// },
// {
// label: 'Docs',
// href: 'https://saltswap.gitbook.io/salt-swap/',
// icon: 'GitbookIcon',
// },
// {
// label: 'Blog',
// href: 'https://saltswap.medium.com/',
// icon: 'MediumIcon',
// },
// ],
// },
]
export default config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment