diff --git a/src/modules/[chain]/index.vue b/src/modules/[chain]/index.vue index 8a86c09b..2dd7e779 100644 --- a/src/modules/[chain]/index.vue +++ b/src/modules/[chain]/index.vue @@ -2,6 +2,7 @@ import MdEditor from 'md-editor-v3'; import PriceMarketChart from '@/components/charts/PriceMarketChart.vue'; +import { Icon } from '@iconify/vue'; import { useBlockchain, useFormatter } from '@/stores'; import { onMounted, ref } from 'vue'; import { useIndexModule } from './indexStore'; @@ -38,6 +39,29 @@ function shortName(name: string, id: string) { ? id : name; } + +const comLinks = [ + { + name: 'Website', + icon: 'mdi-web', + href: store.homepage, + }, + { + name: 'Twitter', + icon: 'mdi-twitter', + href: store.twitter, + }, + { + name: 'Telegram', + icon: 'mdi-telegram', + href: store.telegram, + }, + { + name: 'Github', + icon: 'mdi-github', + href: store.github, + }, +];