Update sidebar links
This commit is contained in:
parent
44871ab685
commit
64246a3ed4
@ -44,7 +44,7 @@ export const Sidebar = () => {
|
||||
<WalletLoader />
|
||||
{/* main navigation routes */}
|
||||
|
||||
<div className="absolute top-[20%] left-[5%]">
|
||||
<div className="absolute top-[20%] left-[5%] mt-[5%]">
|
||||
<ul className="group p-2 w-full bg-transparent menu rounded-box">
|
||||
<li tabIndex={0}>
|
||||
<div
|
||||
@ -258,9 +258,9 @@ export const Sidebar = () => {
|
||||
{/* footer attribution */}
|
||||
<div className="text-xs text-white/50">
|
||||
Stargaze Studio {process.env.APP_VERSION} <br />
|
||||
Made by{' '}
|
||||
<Anchor className="text-plumbus hover:underline" href="https://deuslabs.fi">
|
||||
deus labs
|
||||
Powered by{' '}
|
||||
<Anchor className="text-plumbus hover:underline" href="https://stargaze.zone">
|
||||
Stargaze
|
||||
</Anchor>
|
||||
</div>
|
||||
|
||||
|
@ -1,26 +1,27 @@
|
||||
import { ImGithub, ImTwitter } from 'react-icons/im'
|
||||
import { SiDiscord, SiTelegram } from 'react-icons/si'
|
||||
|
||||
import { BLOCK_EXPLORER_URL } from './constants'
|
||||
import { BLOCK_EXPLORER_URL, NETWORK } from './constants'
|
||||
|
||||
export const links = {
|
||||
// main links
|
||||
deuslabs: `https://deuslabs.fi`,
|
||||
Discord: `https://discord.gg/stargaze`,
|
||||
Docs: `https://docs.stargaze.zone/guides/stargaze-studio`,
|
||||
GitHub: `https://github.com/public-awesome/stargaze-studio`,
|
||||
Stargaze: `https://stargaze.zone/`,
|
||||
Survey: `https://stargaze-zone.typeform.com/studiosurvey`,
|
||||
Telegram: `https://t.me/joinchat/ZQ95YmIn3AI0ODFh`,
|
||||
Twitter: `https://twitter.com/stargazezone`,
|
||||
Explorer: BLOCK_EXPLORER_URL,
|
||||
Documentation: 'https://docs.stargaze.zone/guides/stargaze-studio',
|
||||
Switch: `${NETWORK === 'mainnet' ? 'https://studio.publicawesome.dev' : 'https://studio.stargaze.zone'}`,
|
||||
}
|
||||
|
||||
export const footerLinks = [
|
||||
{ text: `Switch to ${NETWORK === 'mainnet' ? 'Testnet' : 'Mainnet'}`, href: links.Switch },
|
||||
{ text: 'Block Explorer', href: links.Explorer },
|
||||
{ text: 'Documentation', href: links.Docs },
|
||||
{ text: 'Submit an issue', href: `${links.GitHub}/issues/new` },
|
||||
{ text: 'Powered by Stargaze', href: links.Stargaze },
|
||||
{ text: 'Studio Survey', href: links.Survey },
|
||||
]
|
||||
|
||||
export const socialsLinks = [
|
||||
|
Loading…
Reference in New Issue
Block a user