From e37a97a9e1257567d978f2161febc570d49e8ce9 Mon Sep 17 00:00:00 2001 From: Calum Muir Date: Thu, 30 Apr 2026 19:52:13 +0000 Subject: [PATCH] Rename "News" to "Events" in nav and footer menus Co-Authored-By: Claude Sonnet 4.6 --- src/components/SiteFooter.astro | 2 +- src/lib/navigation.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/SiteFooter.astro b/src/components/SiteFooter.astro index ed68ec6..70d4bd7 100644 --- a/src/components/SiteFooter.astro +++ b/src/components/SiteFooter.astro @@ -6,7 +6,7 @@ const quickLinks = [ { label: "Support Us", href: "/support-us" }, { label: "Volunteer Application", href: "/volunteer-application" }, { label: "Participant Application", href: "/participant-application" }, - { label: "News", href: "/events" }, + { label: "Events", href: "/events" }, { label: "Contact Us", href: "/contact" }, { label: "Accessibility", href: "/accessibility" }, { label: "Privacy", href: "/privacy" }, diff --git a/src/lib/navigation.ts b/src/lib/navigation.ts index 149f2af..69a0e4a 100644 --- a/src/lib/navigation.ts +++ b/src/lib/navigation.ts @@ -1,7 +1,7 @@ export const navigationItems = [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, - { label: "News", href: "/events" }, + { label: "Events", href: "/events" }, { label: "Support Us", href: "/support-us" }, { label: "Contact", href: "/contact" }, ];