Files
dezky/apps/website/pages/[slug].vue
T
Ronni Baslund 97728cb09e feat(website): SLA & cookie policy pages
Replace the /sla and /cookies stubs with real pages (da + en), matching
the DPA/terms/privacy layout. Drop both from the [slug].vue stub map.

- SLA: 99% uptime target framed as a transparency-backed commitment (no
  public service credits); contractual credits offered only via Enterprise
  agreements. Support first-response targets table; status-page reference.
- Cookie policy: strictly-necessary + language preference only, cookie-free
  analytics (Umami), no third-party tracking, "no banner needed"; cookie
  table; final (v1.0), no draft banner.
2026-06-06 16:47:47 +02:00

42 lines
1.4 KiB
Vue

<script setup lang="ts">
// Catch-all for the footer's not-yet-built pages. Each known slug renders a
// shared "coming soon" body with its localized title; legal slugs get the
// legal-specific body. Unknown slugs 404 (explicit pages like /about win over
// this dynamic route in Nuxt's resolver).
import { computed } from 'vue'
import { useRoute, useCopy } from '#imports'
definePageMeta({ layout: 'page' })
// Known stub slugs and whether they're legal pages. Keys must match the
// `pages.stubs` keys in landingCopy.ts.
const STUBS: Record<string, { legal: boolean }> = {
customers: { legal: false },
careers: { legal: false },
press: { legal: false },
status: { legal: false },
docs: { legal: false },
blog: { legal: false },
}
const route = useRoute()
const copy = useCopy()
const slug = computed(() => String(route.params.slug))
const stub = computed(() => STUBS[slug.value])
if (!stub.value) {
throw createError({ statusCode: 404, statusMessage: 'Page not found', fatal: true })
}
type StubKey = keyof typeof copy.value.pages.stubs
const title = computed(() => copy.value.pages.stubs[slug.value as StubKey])
const body = computed(() => (stub.value!.legal ? copy.value.pages.legalBody : copy.value.pages.comingSoonBody))
useHead({ title: () => `${title.value} · dezky` })
</script>
<template>
<LandingComingSoon :title="title" :body="body" />
</template>