From 8e08cdc09fc270fb304caeda171fa91ad6031b92 Mon Sep 17 00:00:00 2001 From: colinislit Date: Wed, 19 Nov 2025 21:18:32 +0100 Subject: [PATCH] refactor: rename 'Releases' to 'Documentatie' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed terminology from release notes to feature documentation to better reflect the continuous build-in-public approach. Changes: - Navigation: "Releases" → "Documentatie" - Page titles: "Release Notes" → "Feature Documentatie" - Metadata descriptions updated - Timeline link text updated - Sidebar heading updated - Template and example docs updated The /releases route remains the same for stability, but all user-facing text now says "Documentatie". 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/(marketing)/components/build-timeline.tsx | 4 ++-- app/(marketing)/releases/[category]/page.tsx | 2 +- app/(marketing)/releases/components/release-sidebar.tsx | 2 +- app/(marketing)/releases/page.tsx | 8 ++++---- content/nl/navigation.json | 2 +- content/nl/releases/release-notes-system.mdx | 6 +++--- docs/templates/release-note-template.mdx | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/app/(marketing)/components/build-timeline.tsx b/app/(marketing)/components/build-timeline.tsx index 7da3bbf..6f30ace 100644 --- a/app/(marketing)/components/build-timeline.tsx +++ b/app/(marketing)/components/build-timeline.tsx @@ -240,12 +240,12 @@ export const BuildTimeline = ({ data }: BuildTimelineProps) => { )} - {/* Link to detailed release notes */} + {/* Link to detailed documentation */} - Bekijk gedetailleerde release notes + Bekijk uitgebreide documentatie diff --git a/app/(marketing)/releases/[category]/page.tsx b/app/(marketing)/releases/[category]/page.tsx index e005c93..daa6583 100644 --- a/app/(marketing)/releases/[category]/page.tsx +++ b/app/(marketing)/releases/[category]/page.tsx @@ -36,7 +36,7 @@ export async function generateMetadata({ params }: ReleasePageProps) { } return { - title: `${release.frontmatter.title} - Release Notes`, + title: `${release.frontmatter.title} - Documentatie`, description: release.frontmatter.description, } } diff --git a/app/(marketing)/releases/components/release-sidebar.tsx b/app/(marketing)/releases/components/release-sidebar.tsx index fe3a9dd..302897e 100644 --- a/app/(marketing)/releases/components/release-sidebar.tsx +++ b/app/(marketing)/releases/components/release-sidebar.tsx @@ -82,7 +82,7 @@ export function ReleaseSidebar({ releases, metadata }: ReleaseSidebarProps) {