From cb3db62b833e5dabf3142a9e0bd4dc4a6c941c36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hubert=20Radziwi=C5=84ski?= Date: Wed, 14 Jan 2026 02:51:25 +0100 Subject: [PATCH] feat: Add Projects link to navigation bar --- messages/en.json | 1 + src/lib/layout.shared.tsx | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/messages/en.json b/messages/en.json index 4ac96eaa..50ccbb64 100644 --- a/messages/en.json +++ b/messages/en.json @@ -4,6 +4,7 @@ "nav": { "title": "Hytale Modding", "documentation": "Documentation", + "projects": "Projects", "sponsors": "Sponsors", "search": "Search" }, diff --git a/src/lib/layout.shared.tsx b/src/lib/layout.shared.tsx index b9b67bc3..9b6f65a7 100644 --- a/src/lib/layout.shared.tsx +++ b/src/lib/layout.shared.tsx @@ -31,6 +31,10 @@ export function baseOptions( text: messages.nav.sponsors, url: `/${locale}/sponsors`, }, + { + text: messages.nav.projects || "Projects", + url: `/${locale}/projects`, + } ); }