Skip to content

Commit 1ca8d10

Browse files
authored
feat: add blog menu item to mobile menu (#1147)
1 parent 2052c21 commit 1ca8d10

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

app/components/Header/MobileMenu.client.vue

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,15 @@ onUnmounted(deactivate)
112112
{{ $t('footer.about') }}
113113
</NuxtLink>
114114

115+
<NuxtLink
116+
:to="{ name: 'blog' }"
117+
class="flex items-center gap-3 px-3 py-3 rounded-md font-mono text-sm text-fg hover:bg-bg-subtle transition-colors duration-200"
118+
@click="closeMenu"
119+
>
120+
<span class="i-carbon:blog w-5 h-5 text-fg-muted" aria-hidden="true" />
121+
{{ $t('footer.blog') }}
122+
</NuxtLink>
123+
115124
<NuxtLink
116125
:to="{ name: 'privacy' }"
117126
class="flex items-center gap-3 px-3 py-3 rounded-md font-mono text-sm text-fg hover:bg-bg-subtle transition-colors duration-200"

0 commit comments

Comments
 (0)