From b1c8e50e9b21e6627fc98bb603fcefd485ab27e6 Mon Sep 17 00:00:00 2001 From: Shane-Donlon Date: Wed, 16 Oct 2024 16:27:06 +0100 Subject: [PATCH 1/2] fix Events routing by removing preceeding '/' --- config/site_settings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/site_settings.ts b/config/site_settings.ts index cf1dcf5c..1891a2d9 100644 --- a/config/site_settings.ts +++ b/config/site_settings.ts @@ -1,7 +1,7 @@ export const footerNav = [ { name: "Home", href: "/" }, { name: "Articles", href: "/articles" }, - { name: "Events", href: "/https://www.meetup.com/codu-community/" }, + { name: "Events", href: "https://www.meetup.com/codu-community/" }, { name: "Sponsorship", href: "/sponsorship" }, { name: "Code Of Conduct", href: "/code-of-conduct" }, ]; From 9f442d259fdbaed8e777bfba3798a71dfee1aba8 Mon Sep 17 00:00:00 2001 From: Shane-Donlon Date: Wed, 16 Oct 2024 16:29:32 +0100 Subject: [PATCH 2/2] Add privacy policy routing to footer nav --- config/site_settings.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/config/site_settings.ts b/config/site_settings.ts index 1891a2d9..c51c0718 100644 --- a/config/site_settings.ts +++ b/config/site_settings.ts @@ -4,6 +4,7 @@ export const footerNav = [ { name: "Events", href: "https://www.meetup.com/codu-community/" }, { name: "Sponsorship", href: "/sponsorship" }, { name: "Code Of Conduct", href: "/code-of-conduct" }, + { name: "Privacy Policy", href: "/privacy" }, ]; export const navigation = [