/* eslint-disable eslint-comments/disable-enable-pair */ /* eslint-disable jsx-a11y/no-noninteractive-tabindex */ import clsx from 'clsx' import { Anchor } from 'components/Anchor' import { useWallet } from 'contexts/wallet' import Link from 'next/link' import { useRouter } from 'next/router' // import BrandText from 'public/brand/brand-text.svg' import { footerLinks, socialsLinks } from 'utils/links' import { BADGE_HUB_ADDRESS, BASE_FACTORY_ADDRESS, NETWORK } from '../utils/constants' import { Conditional } from './Conditional' import { IncomeDashboardDisclaimer } from './IncomeDashboardDisclaimer' import { SidebarLayout } from './SidebarLayout' import { WalletLoader } from './WalletLoader' export const Sidebar = () => { const router = useRouter() const wallet = useWallet() return ( {/* Stargaze brand as home button */} [e.preventDefault(), router.push('/brand')]}> Brand Text {/* wallet button */} {/* main navigation routes */}
  • Collections
    • Create a Collection
    • My Collections
    • Collection Actions
  • Badges
    • Create a Badge
    • My Badges
    • Badge Actions
  • Contract Dashboards
    • Base Minter Contract
    • Vending Minter Contract
    • SG721 Contract
    • Whitelist Contract
    • Badge Hub Contract
    • Splits Contract
{/* Stargaze network status */}
Network: {wallet.network}
{/* footer reference links */}
    {footerLinks.map(({ href, text }) => (
  • {text}
  • ))}
{/* footer attribution */}
Stargaze Studio {process.env.APP_VERSION}
Made by{' '} deus labs
{/* footer social links */}
{socialsLinks.map(({ Icon, href, text }) => ( ))}
) }