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" }, ];