From d9ec856611c3d98ce3a99c8b199e1e38817e4d9d Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 4 Nov 2024 22:23:26 -0500 Subject: [PATCH] feat(news): changed news to newsletter namespace --- src/components/sidebar-navigation/Sidebar.tsx | 2 +- src/components/sidebar-navigation/sections.ts | 2 +- src/pages/{news.tsx => newsletter.tsx} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/pages/{news.tsx => newsletter.tsx} (100%) diff --git a/src/components/sidebar-navigation/Sidebar.tsx b/src/components/sidebar-navigation/Sidebar.tsx index 4ee56e2a8..d2b22687b 100644 --- a/src/components/sidebar-navigation/Sidebar.tsx +++ b/src/components/sidebar-navigation/Sidebar.tsx @@ -196,7 +196,7 @@ export const Sidebar = () => { - + News diff --git a/src/components/sidebar-navigation/sections.ts b/src/components/sidebar-navigation/sections.ts index 765d6d56b..0c45eb9b4 100644 --- a/src/components/sidebar-navigation/sections.ts +++ b/src/components/sidebar-navigation/sections.ts @@ -123,7 +123,7 @@ export const marketingDrawerSections: NavigationSection[] = [ }, { title: 'News', - url: '/news', + url: '/newsletter', icon: 'ph-newspaper ph-bold', }, { diff --git a/src/pages/news.tsx b/src/pages/newsletter.tsx similarity index 100% rename from src/pages/news.tsx rename to src/pages/newsletter.tsx