diff --git a/frontend_nuxt/pages/index.vue b/frontend_nuxt/pages/index.vue index 65b9365e9..10e106510 100644 --- a/frontend_nuxt/pages/index.vue +++ b/frontend_nuxt/pages/index.vue @@ -72,6 +72,7 @@ + {{ article.title }} @@ -572,6 +573,7 @@ watch([selectedCategory, selectedTags], ([newCategory, newTags]) => { .pinned-icon, .lottery-icon, .featured-icon, +.proposal-icon, .poll-icon { margin-right: 4px; color: var(--primary-color); diff --git a/frontend_nuxt/plugins/iconpark.client.ts b/frontend_nuxt/plugins/iconpark.client.ts index 58338d98a..ee11c64f5 100644 --- a/frontend_nuxt/plugins/iconpark.client.ts +++ b/frontend_nuxt/plugins/iconpark.client.ts @@ -81,6 +81,7 @@ import { CheckOne, Share, Financing, + Hands, } from '@icon-park/vue-next' export default defineNuxtPlugin((nuxtApp) => { @@ -165,4 +166,5 @@ export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.component('CheckOne', CheckOne) nuxtApp.vueApp.component('Share', Share) nuxtApp.vueApp.component('Financing', Financing) + nuxtApp.vueApp.component('Hands', Hands) })