stargaze-studio/utils/links.ts

32 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-07-13 13:56:36 +00:00
import { ImGithub, ImTwitter } from 'react-icons/im'
import { SiDiscord, SiTelegram } from 'react-icons/si'
import { BLOCK_EXPLORER_URL } from './constants'
export const links = {
// main links
deuslabs: `https://deuslabs.fi`,
Discord: `https://discord.gg/stargaze`,
2022-10-02 08:12:18 +00:00
Docs: `https://docs.stargaze.zone/guides/stargaze-studio`,
2022-09-07 07:27:32 +00:00
GitHub: `https://github.com/public-awesome/stargaze-studio`,
2022-07-13 13:56:36 +00:00
Stargaze: `https://stargaze.zone/`,
Telegram: `https://t.me/joinchat/ZQ95YmIn3AI0ODFh`,
Twitter: `https://twitter.com/stargazezone`,
Explorer: BLOCK_EXPLORER_URL,
2022-10-02 08:12:18 +00:00
Documentation: 'https://docs.stargaze.zone/guides/stargaze-studio',
2022-07-13 13:56:36 +00:00
}
export const footerLinks = [
{ text: 'Block Explorer', href: links.Explorer },
{ text: 'Documentation', href: links.Docs },
{ text: 'Submit an issue', href: `${links.GitHub}/issues/new` },
2022-07-13 13:56:36 +00:00
{ text: 'Powered by Stargaze', href: links.Stargaze },
]
export const socialsLinks = [
{ text: 'Discord', href: links.Discord, Icon: SiDiscord },
{ text: 'GitHub', href: links.GitHub, Icon: ImGithub },
{ text: 'Telegram', href: links.Telegram, Icon: SiTelegram },
{ text: 'Twitter', href: links.Twitter, Icon: ImTwitter },
]