From eca3e1d0b650256baa0ee2a70644e9506e543535 Mon Sep 17 00:00:00 2001 From: kayjaydee Date: Wed, 22 Apr 2026 09:11:27 +0200 Subject: [PATCH] feat(06-02): add Blog nav link in AppHeader between Hytale and Projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Insert { key: 'blog', path: '/blog' } in navLinks computed array - Position: between hytale and projects (D-15 ordering) - Template v-for iterations unchanged — new link auto-propagates to desktop nav + mobile slideover - Label resolved via t(`nav.${link.key}`) → uses nav.blog key added in Task 2.1 --- app/components/layout/AppHeader.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/layout/AppHeader.vue b/app/components/layout/AppHeader.vue index df9d796..eff29ae 100644 --- a/app/components/layout/AppHeader.vue +++ b/app/components/layout/AppHeader.vue @@ -8,6 +8,7 @@ const mobileOpen = ref(false) const navLinks = computed(() => [ { key: 'home', path: '/' }, { key: 'hytale', path: '/hytale' }, + { key: 'blog', path: '/blog' }, { key: 'projects', path: '/projects' }, { key: 'about', path: '/about' }, { key: 'contact', path: '/contact' },