From 50a5df1b455bbc5a546f1d5d95173ae3bf6c0da4 Mon Sep 17 00:00:00 2001 From: qqqqd Date: Tue, 6 May 2025 10:47:00 +0200 Subject: [PATCH] fix: update Aave FAQ/Developers links Replaced old docs.aave.com links with updated aave.com URLs for FAQ and Developers menu items. --- src/layouts/AppFooter.tsx | 4 ++-- src/ui-config/menu-items/index.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/layouts/AppFooter.tsx b/src/layouts/AppFooter.tsx index 2285602d5f..8f3c48d94d 100644 --- a/src/layouts/AppFooter.tsx +++ b/src/layouts/AppFooter.tsx @@ -61,12 +61,12 @@ export function AppFooter() { key: 'Privacy', }, { - href: 'https://docs.aave.com/hub/', + href: 'https://aave.com/docs', label: Docs, key: 'Docs', }, { - href: 'https://docs.aave.com/faq/', + href: 'https://aave.com/faq', label: FAQS, key: 'FAQS', }, diff --git a/src/ui-config/menu-items/index.tsx b/src/ui-config/menu-items/index.tsx index fc446eeb4c..519d2b0170 100644 --- a/src/ui-config/menu-items/index.tsx +++ b/src/ui-config/menu-items/index.tsx @@ -61,12 +61,12 @@ interface MoreMenuItem extends Navigation { const moreMenuItems: MoreMenuItem[] = [ { - link: 'https://docs.aave.com/faq/', + link: 'https://aave.com/faq', title: t`FAQ`, icon: , }, { - link: 'https://docs.aave.com/portal/', + link: 'https://aave.com/docs', title: t`Developers`, icon: , },