@@ -14,52 +14,25 @@ const isHome = computed(() => route.name === 'index')
1414 <BuildEnvironment v-if =" !isHome" footer />
1515 </div >
1616 <!-- Desktop: Show all links. Mobile: Links are in MobileMenu -->
17- <div class =" hidden sm:flex items-center gap-6 min-h-11" >
18- <NuxtLink :to =" { name: 'about' }" class = " link-subtle font-mono text-xs flex items-center " >
17+ <div class =" hidden sm:flex items-center gap-6 min-h-11 text-xs " >
18+ <LinkBase :to =" { name: 'about' }" >
1919 {{ $t('footer.about') }}
20- </NuxtLink >
21- <NuxtLink
22- :to =" { name: 'privacy' }"
23- class =" link-subtle font-mono text-xs flex items-center gap-1"
24- >
20+ </LinkBase >
21+ <LinkBase :to =" { name: 'privacy' }" >
2522 {{ $t('privacy_policy.title') }}
26- </NuxtLink >
27- <a
28- href =" https://docs.npmx.dev"
29- target =" _blank"
30- rel =" noopener noreferrer"
31- class =" link-subtle font-mono text-xs flex items-center gap-1"
32- >
23+ </LinkBase >
24+ <LinkBase to =" https://docs.npmx.dev" >
3325 {{ $t('footer.docs') }}
34- <span class =" i-carbon:launch rtl-flip w-3 h-3" aria-hidden =" true" />
35- </a >
36- <a
37- href =" https://repo.npmx.dev"
38- target =" _blank"
39- rel =" noopener noreferrer"
40- class =" link-subtle font-mono text-xs flex items-center gap-1"
41- >
26+ </LinkBase >
27+ <LinkBase to =" https://repo.npmx.dev" >
4228 {{ $t('footer.source') }}
43- <span class =" i-carbon:launch rtl-flip w-3 h-3" aria-hidden =" true" />
44- </a >
45- <a
46- href =" https://social.npmx.dev"
47- target =" _blank"
48- rel =" noopener noreferrer"
49- class =" link-subtle font-mono text-xs flex items-center gap-1"
50- >
29+ </LinkBase >
30+ <LinkBase to =" https://social.npmx.dev" >
5131 {{ $t('footer.social') }}
52- <span class =" i-carbon:launch rtl-flip w-3 h-3" aria-hidden =" true" />
53- </a >
54- <a
55- href =" https://chat.npmx.dev"
56- target =" _blank"
57- rel =" noopener noreferrer"
58- class =" link-subtle font-mono text-xs flex items-center gap-1"
59- >
32+ </LinkBase >
33+ <LinkBase to =" https://chat.npmx.dev" >
6034 {{ $t('footer.chat') }}
61- <span class =" i-carbon:launch rtl-flip w-3 h-3" aria-hidden =" true" />
62- </a >
35+ </LinkBase >
6336 </div >
6437 </div >
6538 <p class =" text-xs text-fg-muted text-center sm:text-start m-0" >
0 commit comments