diff --git a/frontend/components/core/Footer.vue b/frontend/components/core/Footer.vue index b783bd3..049140f 100644 --- a/frontend/components/core/Footer.vue +++ b/frontend/components/core/Footer.vue @@ -2,7 +2,10 @@ const { t } = useI18n({ useScope: 'local', }); -const links = computed(() => [{ name: t('issue'), Link: 'https://github.com/rekryt/iplist/issues' }]); +const links = computed(() => [ + { name: t('issue'), Link: 'https://github.com/rekryt/iplist/issues' }, + { name: t('lightVersion'), Link: '/index' }, +]);