Skip to content

Commit

Permalink
add forum to mobile nav
Browse files Browse the repository at this point in the history
  • Loading branch information
gtg7784 committed Oct 21, 2024
1 parent 2cc346c commit 2546ad1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/header/mobile/MobileNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@
<span class="text--link">{{ $t('sidenavi.data') }}</span>
</div>
</router-link>
<a :href="socialUrl.forum" :class="['link']" target="_blank" @click="showNav = !showNav">
<div class="column--item column--item--dashboard">
<span class="text--link">{{ $t('sidenavi.forum') }}</span>
</div>
</a>
</nav>
<a class="lfgm-mobile" :href="lfgmUrl" target="_blank">
<img :src="require('src/assets/img/lfgm.svg')" alt="LFGM" />
Expand Down Expand Up @@ -89,7 +94,7 @@ import { defineComponent, ref, computed } from 'vue';
import { useRouter } from 'vue-router';
import { useBreakpoints, useNetworkInfo } from 'src/hooks';
import { Path as RoutePath } from 'src/router/routes';
import { lfgmUrl } from 'src/links';
import { lfgmUrl, socialUrl } from 'src/links';
import { useStore } from 'src/store';
import { providerEndpoints } from 'src/config/chainEndpoints';
import AstarDomains from './AstarDomains.vue';
Expand Down Expand Up @@ -120,6 +125,7 @@ export default defineComponent({
network,
isZkyoto,
lfgmUrl,
socialUrl,
};
},
});
Expand Down

0 comments on commit 2546ad1

Please sign in to comment.