@@ -14,58 +14,28 @@ 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: 'blog' }"
23- class =" link-subtle font-mono text-xs min-h-8 sm:min-h-11 flex items-center"
24- >
20+ </LinkBase >
21+ <LinkBase :to =" { name: 'blog' }" >
2522 {{ $t('footer.blog') }}
26- </NuxtLink >
27- <NuxtLink
28- :to =" { name: 'privacy' }"
29- class =" link-subtle font-mono text-xs flex items-center gap-1"
30- >
23+ </LinkBase >
24+ <LinkBase :to =" { name: 'privacy' }" >
3125 {{ $t('privacy_policy.title') }}
32- </NuxtLink >
33- <a
34- href =" https://docs.npmx.dev"
35- target =" _blank"
36- rel =" noopener noreferrer"
37- class =" link-subtle font-mono text-xs flex items-center gap-1"
38- >
26+ </LinkBase >
27+ <LinkBase to =" https://docs.npmx.dev" >
3928 {{ $t('footer.docs') }}
40- <span class =" i-carbon:launch rtl-flip w-3 h-3" aria-hidden =" true" />
41- </a >
42- <a
43- href =" https://repo.npmx.dev"
44- target =" _blank"
45- rel =" noopener noreferrer"
46- class =" link-subtle font-mono text-xs flex items-center gap-1"
47- >
29+ </LinkBase >
30+ <LinkBase to =" https://repo.npmx.dev" >
4831 {{ $t('footer.source') }}
49- <span class =" i-carbon:launch rtl-flip w-3 h-3" aria-hidden =" true" />
50- </a >
51- <a
52- href =" https://social.npmx.dev"
53- target =" _blank"
54- rel =" noopener noreferrer"
55- class =" link-subtle font-mono text-xs flex items-center gap-1"
56- >
32+ </LinkBase >
33+ <LinkBase to =" https://social.npmx.dev" >
5734 {{ $t('footer.social') }}
58- <span class =" i-carbon:launch rtl-flip w-3 h-3" aria-hidden =" true" />
59- </a >
60- <a
61- href =" https://chat.npmx.dev"
62- target =" _blank"
63- rel =" noopener noreferrer"
64- class =" link-subtle font-mono text-xs flex items-center gap-1"
65- >
35+ </LinkBase >
36+ <LinkBase to =" https://chat.npmx.dev" >
6637 {{ $t('footer.chat') }}
67- <span class =" i-carbon:launch rtl-flip w-3 h-3" aria-hidden =" true" />
68- </a >
38+ </LinkBase >
6939 </div >
7040 </div >
7141 <p class =" text-xs text-fg-muted text-center sm:text-start m-0" >
0 commit comments