feat(website): bilingual i18n (English default, Danish at /da) + SEO

Add @nuxtjs/i18n: English is the default locale (no prefix), Danish lives
under /da (prefix_except_default). Both server-rendered and indexed with
hreflang alternates + per-locale canonical (useLocaleHead in app.vue).
First-visit browser language is auto-detected and remembered in the
i18n_redirected cookie (redirectOn root).

- Keep the hand-authored COPY object; useLang/useCopy now read the i18n
  locale; useLocalizeHref/useLangToggle added. Every internal link is
  localized so navigation stays in-locale.
- Clear segmented EN|DA language switcher (active segment filled) replacing
  the ambiguous "en · da" pill.
- SEO: useSeoMeta defaults are locale-aware; og:image switches per locale
  (English / Danish share card); favicon links; robots.txt + sitemap.xml;
  env-aware siteUrl/baseUrl (localhost in dev, dezky.eu in prod).
- Update the cookie policy (dezky-lang -> i18n_redirected).
- Gate the Traefik wss:443 HMR behind DEZKY_TRAEFIK so localhost dev/DevTools
  connect over plain ws (fixes the DevTools disconnect loop).
This commit is contained in:
Ronni Baslund
2026-06-06 20:46:26 +02:00
parent 3f0298e011
commit 7bee161ac1
24 changed files with 1812 additions and 107 deletions
+38 -26
View File
@@ -4,12 +4,15 @@
import { computed, ref } from 'vue'
import { useRoute } from 'vue-router'
import { APP_URL } from '~/utils/landingTokens'
import { useTheme, useCopy, useLang, toggleLang, scrollToAnchor } from '~/composables/useLanding'
import { useTheme, useCopy, useLang, useLocalizeHref, scrollToAnchor } from '~/composables/useLanding'
const t = useTheme()
const copy = useCopy()
const lang = useLang()
const route = useRoute()
const loc = useLocalizeHref()
const localePath = useLocalePath()
const switchLocalePath = useSwitchLocalePath()
const mobileOpen = ref(false)
@@ -22,15 +25,16 @@ const items = computed(() => [
])
function onLogo(e: MouseEvent) {
// On the homepage, scroll to top in place; from a sub-page let NuxtLink route home.
if (route.path === '/') {
// On the homepage (current locale), scroll to top in place; from a sub-page
// let NuxtLink route home.
if (route.path === localePath('/')) {
e.preventDefault()
window.scrollTo({ top: 0, behavior: 'smooth' })
}
}
function onNav(e: MouseEvent, href: string) {
if (href.includes('#') && route.path === '/') {
if (href.includes('#') && route.path === localePath('/')) {
e.preventDefault()
scrollToAnchor(href.slice(href.indexOf('#')))
}
@@ -41,6 +45,24 @@ function onMobileLink(e: MouseEvent, href: string) {
onNav(e, href)
mobileOpen.value = false
}
// Segmented language switcher: pick a locale (no-op if already active) and
// close the mobile menu. The active segment is filled so it's obvious which
// language you're on.
function switchTo(code: 'en' | 'da') {
navigateTo(switchLocalePath(code))
mobileOpen.value = false
}
function segStyle(code: 'en' | 'da') {
const active = lang.value === code
return {
padding: '5px 9px', border: 'none', cursor: 'pointer', borderRadius: '3px',
fontFamily: '\'JetBrains Mono\', monospace', fontSize: '11px', letterSpacing: '0.08em',
background: active ? t.value.fg : 'transparent',
color: active ? t.value.bg : t.value.fgMuted,
fontWeight: active ? 700 : 500,
}
}
</script>
<template>
@@ -55,7 +77,7 @@ function onMobileLink(e: MouseEvent, href: string) {
padding: `18px clamp(20px, 5vw, 64px)`,
display: 'flex', alignItems: 'center', justifyContent: 'space-between',
}">
<NuxtLink to="/" :style="{ display: 'flex', alignItems: 'center', gap: '12px', cursor: 'pointer' }" @click="onLogo">
<NuxtLink :to="loc('/')" :style="{ display: 'flex', alignItems: 'center', gap: '12px', cursor: 'pointer' }" @click="onLogo">
<BrandNodeMark :size="32" :fg="t.fg" :accent="t.signal" />
<div :style="{ fontFamily: '\'JetBrains Mono\', monospace', fontWeight: 600, fontSize: '16px', letterSpacing: '-0.02em', color: t.fg }">dezky</div>
</NuxtLink>
@@ -63,7 +85,7 @@ function onMobileLink(e: MouseEvent, href: string) {
<!-- Desktop nav cluster hidden on mobile via scoped CSS -->
<nav class="nav-desktop" :style="{ display: 'flex', alignItems: 'center', gap: '36px' }">
<NuxtLink
v-for="(it, i) in items" :key="i" :to="it.href"
v-for="(it, i) in items" :key="i" :to="loc(it.href)"
:style="{ fontFamily: '\'Inter\', sans-serif', fontSize: '14px', color: t.fgMuted, letterSpacing: '-0.005em' }"
@click="onNav($event, it.href)"
>{{ it.label }}</NuxtLink>
@@ -71,17 +93,12 @@ function onMobileLink(e: MouseEvent, href: string) {
<!-- Desktop CTA cluster hidden on mobile via scoped CSS -->
<div class="nav-desktop" :style="{ display: 'flex', alignItems: 'center', gap: '14px' }">
<button
:style="{
background: 'transparent', border: `1px solid ${t.border}`,
color: t.fgMuted, fontSize: '11px', padding: '6px 10px', borderRadius: '4px',
fontFamily: '\'JetBrains Mono\', monospace', letterSpacing: '0.06em', textTransform: 'uppercase',
whiteSpace: 'nowrap',
}"
@click="toggleLang()"
>{{ lang === 'da' ? 'da · en' : 'en · da' }}</button>
<div :style="{ display: 'inline-flex', alignItems: 'center', gap: '2px', border: `1px solid ${t.border}`, borderRadius: '5px', padding: '2px' }">
<button :style="segStyle('en')" @click="switchTo('en')">EN</button>
<button :style="segStyle('da')" @click="switchTo('da')">DA</button>
</div>
<a :href="APP_URL" :style="{ fontFamily: '\'Inter\', sans-serif', fontSize: '14px', color: t.fgMuted }">{{ copy.nav.login }}</a>
<LandingBtn variant="primary" @click="navigateTo('/demo')">{{ copy.nav.cta }} </LandingBtn>
<LandingBtn variant="primary" @click="navigateTo(localePath('/demo'))">{{ copy.nav.cta }} </LandingBtn>
</div>
<!-- Hamburger visible only on mobile via scoped CSS -->
@@ -141,21 +158,16 @@ function onMobileLink(e: MouseEvent, href: string) {
>{{ it.label }}</NuxtLink>
<div :style="{ display: 'flex', alignItems: 'center', gap: '14px', paddingTop: '24px', flexWrap: 'wrap' }">
<button
:style="{
background: 'transparent', border: `1px solid ${t.border}`,
color: t.fgMuted, fontSize: '11px', padding: '6px 10px', borderRadius: '4px',
fontFamily: '\'JetBrains Mono\', monospace', letterSpacing: '0.06em', textTransform: 'uppercase',
whiteSpace: 'nowrap',
}"
@click="toggleLang()"
>{{ lang === 'da' ? 'da · en' : 'en · da' }}</button>
<div :style="{ display: 'inline-flex', alignItems: 'center', gap: '2px', border: `1px solid ${t.border}`, borderRadius: '5px', padding: '2px' }">
<button :style="segStyle('en')" @click="switchTo('en')">EN</button>
<button :style="segStyle('da')" @click="switchTo('da')">DA</button>
</div>
<a
:href="APP_URL"
:style="{ fontFamily: '\'Inter\', sans-serif', fontSize: '14px', color: t.fgMuted }"
@click="mobileOpen = false"
>{{ copy.nav.login }}</a>
<LandingBtn variant="primary" @click="() => { navigateTo('/demo'); mobileOpen = false }">{{ copy.nav.cta }} </LandingBtn>
<LandingBtn variant="primary" @click="() => { navigateTo(localePath('/demo')); mobileOpen = false }">{{ copy.nav.cta }} </LandingBtn>
</div>
</div>
</header>