From c6e2d90e358f6172aa28e28be68e216c0fe2b666 Mon Sep 17 00:00:00 2001 From: pkattera Date: Tue, 3 Feb 2026 14:57:53 +0000 Subject: [PATCH 1/3] Remove links from nav, including Claims and Feedback --- .../navs/AppNav/AppSidebar/SidebarContent.vue | 15 --------------- .../navs/AppNav/DesktopLinks/DesktopLinks.vue | 10 ---------- src/pages/index.vue | 4 ++-- 3 files changed, 2 insertions(+), 27 deletions(-) diff --git a/src/components/navs/AppNav/AppSidebar/SidebarContent.vue b/src/components/navs/AppNav/AppSidebar/SidebarContent.vue index b885bafcdd..62cded9a18 100644 --- a/src/components/navs/AppNav/AppSidebar/SidebarContent.vue +++ b/src/components/navs/AppNav/AppSidebar/SidebarContent.vue @@ -16,7 +16,6 @@ import DiscordIcon from '@/components/_global/icons/brands/DiscordIcon.vue'; import MediumIcon from '@/components/_global/icons/brands/MediumIcon.vue'; import YoutubeIcon from '@/components/_global/icons/brands/YoutubeIcon.vue'; import GithubIcon from '@/components/_global/icons/brands/GithubIcon.vue'; -import { useAppzi } from '@/composables/useAppzi'; /** * PROPS & EMITS @@ -32,7 +31,6 @@ const { networkConfig } = useConfig(); const { networkSlug } = useNetwork(); const { t } = useI18n(); const router = useRouter(); -const { openNpsModal } = useAppzi(); /** * STATE @@ -40,11 +38,6 @@ const { openNpsModal } = useAppzi(); const blockIcon = ref(); const navLinks = [ - { - label: t('claim'), - path: `/${networkSlug}/claim`, - goal: Goals.ClickNavClaim, - }, { label: 'veBAL', path: `/${networkSlug}/vebal`, goal: Goals.ClickNavVebal }, ]; @@ -52,13 +45,8 @@ const ecosystemLinks = [ { label: t('build'), url: 'https://balancer.fi/build' }, { label: t('blog'), url: 'https://medium.com/balancer-protocol' }, { label: t('docs'), url: 'https://docs.balancer.fi/' }, - { label: t('governance'), url: 'https://vote.balancer.fi/#/' }, { label: t('analytics'), url: 'https://dune.com/balancer' }, { label: t('forum'), url: 'https://forum.balancer.fi/' }, - { - label: t('grants'), - url: 'http://grants.balancer.community', - }, ]; const socialLinks = { @@ -141,9 +129,6 @@ watch(blockNumber, async () => { {{ link.label }} - {{ - t('feedback') - }}
diff --git a/src/components/navs/AppNav/DesktopLinks/DesktopLinks.vue b/src/components/navs/AppNav/DesktopLinks/DesktopLinks.vue index a3d5851ecc..01abaa4c7d 100644 --- a/src/components/navs/AppNav/DesktopLinks/DesktopLinks.vue +++ b/src/components/navs/AppNav/DesktopLinks/DesktopLinks.vue @@ -21,16 +21,6 @@ function isActive(page: string): boolean {