From 142dc708803e83d917bc9d966308127f13fd306e Mon Sep 17 00:00:00 2001 From: Muneerat Date: Fri, 23 Aug 2024 13:15:12 +0100 Subject: [PATCH 01/58] fix: add router for terms and privacy in footer bottom --- src/components/layouts/footer/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/layouts/footer/index.tsx b/src/components/layouts/footer/index.tsx index b5de8c731..7de3e3e8f 100644 --- a/src/components/layouts/footer/index.tsx +++ b/src/components/layouts/footer/index.tsx @@ -150,8 +150,8 @@ const Footer = () => { ]; const footerBottom = [ - { route: "privacyPolicy", link: "/" }, - { route: "termsOfUse", link: "/" }, + { route: "privacyPolicy", link: "/privacy-policy" }, + { route: "termsOfUse", link: "/terms-and-conditions" }, ]; // From 91bfb32cae8683dcd4009560099f2a876c965a59 Mon Sep 17 00:00:00 2001 From: Mary <101870828+Chioma227@users.noreply.github.com> Date: Fri, 23 Aug 2024 19:03:15 +0100 Subject: [PATCH 02/58] chore: remove duplicate contactUs from help-center --- src/app/(landing-routes)/help-center/page.tsx | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/app/(landing-routes)/help-center/page.tsx b/src/app/(landing-routes)/help-center/page.tsx index 26ff2313b..768041179 100644 --- a/src/app/(landing-routes)/help-center/page.tsx +++ b/src/app/(landing-routes)/help-center/page.tsx @@ -114,17 +114,6 @@ const HelpCenter = () => { > Frequently Asked Questions - -

- We couldn't answer your question? -

- - - Contact us - From 858c2064e192742cd6d5ef6b596bc899810b55aa Mon Sep 17 00:00:00 2001 From: Mary <101870828+Chioma227@users.noreply.github.com> Date: Fri, 23 Aug 2024 19:14:02 +0100 Subject: [PATCH 03/58] fix: fix privacy policy and terms of use footer links --- src/components/layouts/footer/index.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/layouts/footer/index.tsx b/src/components/layouts/footer/index.tsx index 0e4eadca9..ac586c8ee 100644 --- a/src/components/layouts/footer/index.tsx +++ b/src/components/layouts/footer/index.tsx @@ -151,12 +151,10 @@ const Footer = () => { ]; const footerBottom = [ - { route: "privacyPolicy", link: "/" }, - { route: "termsOfUse", link: "/" }, + { route: "privacyPolicy", link: "/privacy-policy" }, + { route: "termsOfUse", link: "/terms-and-conditions" }, ]; - // - return (