Skip to content

Commit 86a7ac3

Browse files
[autofix.ci] apply automated fixes
1 parent 8dc2b3a commit 86a7ac3

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

app/components/AppFooter.vue

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ const closeModal = () => modalRef.value?.close?.()
2424
<div class="hidden sm:grid sm:grid-cols-2 lg:grid-cols-3 gap-x-10 gap-y-1 min-h-11 text-xs">
2525
<!-- Column 1: Product -->
2626
<div class="flex flex-col gap-1">
27-
<span class="text-fg-subtle uppercase tracking-wide text-2xs mb-1">{{ $t('footer.product') }}</span>
27+
<span class="text-fg-subtle uppercase tracking-wide text-2xs mb-1">{{
28+
$t('footer.product')
29+
}}</span>
2830
<LinkBase :to="{ name: 'about' }">{{ $t('footer.about') }}</LinkBase>
2931
<LinkBase :to="{ name: 'blog' }">{{ $t('footer.blog') }}</LinkBase>
3032
<LinkBase :to="NPMX_DOCS_SITE">{{ $t('footer.docs') }}</LinkBase>
@@ -119,15 +121,21 @@ const closeModal = () => modalRef.value?.close?.()
119121

120122
<!-- Column 2: Legal & Info -->
121123
<div class="flex flex-col gap-1">
122-
<span class="text-fg-subtle uppercase tracking-wide text-2xs mb-1">{{ $t('footer.legal') }}</span>
124+
<span class="text-fg-subtle uppercase tracking-wide text-2xs mb-1">{{
125+
$t('footer.legal')
126+
}}</span>
123127
<LinkBase :to="{ name: 'privacy' }">{{ $t('privacy_policy.title') }}</LinkBase>
124128
<LinkBase :to="{ name: 'accessibility' }">{{ $t('a11y.footer_title') }}</LinkBase>
125-
<LinkBase :to="{ name: 'translation-status' }">{{ $t('translation_status.title') }}</LinkBase>
129+
<LinkBase :to="{ name: 'translation-status' }">{{
130+
$t('translation_status.title')
131+
}}</LinkBase>
126132
</div>
127133

128134
<!-- Column 3: Community -->
129135
<div class="flex flex-col gap-1">
130-
<span class="text-fg-subtle uppercase tracking-wide text-2xs mb-1">{{ $t('footer.community') }}</span>
136+
<span class="text-fg-subtle uppercase tracking-wide text-2xs mb-1">{{
137+
$t('footer.community')
138+
}}</span>
131139
<LinkBase to="https://repo.npmx.dev">{{ $t('footer.source') }}</LinkBase>
132140
<LinkBase to="https://social.npmx.dev">{{ $t('footer.social') }}</LinkBase>
133141
<LinkBase :to="discord.url">{{ discord.label }}</LinkBase>

0 commit comments

Comments
 (0)