From 4e9c6b37d3a71f7bf4e2452be202906b8f7c76c9 Mon Sep 17 00:00:00 2001 From: mkfain Date: Thu, 21 May 2026 22:06:36 -0500 Subject: [PATCH] Rename Support nav label to Campaigns, Organize to Groups MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Touches user-facing labels only: - TopNav: Support -> Campaigns, Organize -> Groups - Sidebar: Organize -> Groups - MobileBottomNav: Organize -> Groups - /communities hero kicker: Organize -> Groups Routes, hooks, and the country-organizers admin feature (`OrganizersPage` / `useOrganizers` — a separate concept covering appointed pinners for country feeds) are left alone. Code comments referring to the "Organize hero" are kept as-is so future readers can still find their way around by structural name. --- src/components/MobileBottomNav.tsx | 2 +- src/components/TopNav.tsx | 4 ++-- src/lib/sidebarItems.tsx | 2 +- src/pages/CommunitiesPage.tsx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/MobileBottomNav.tsx b/src/components/MobileBottomNav.tsx index ea8c6b2e..1a22de64 100644 --- a/src/components/MobileBottomNav.tsx +++ b/src/components/MobileBottomNav.tsx @@ -110,7 +110,7 @@ export function MobileBottomNav() { {/* Organizations */} { selectionChanged(); setSearchOpen(false); }} diff --git a/src/components/TopNav.tsx b/src/components/TopNav.tsx index 63fb830a..5449d1db 100644 --- a/src/components/TopNav.tsx +++ b/src/components/TopNav.tsx @@ -34,8 +34,8 @@ interface NavItem { const NAV_ITEMS: NavItem[] = [ { label: 'Activity', to: '/feed', icon: Activity }, - { label: 'Support', to: '/campaigns/all', icon: HandHeart }, - { label: 'Organize', to: '/communities', icon: Users }, + { label: 'Campaigns', to: '/campaigns/all', icon: HandHeart }, + { label: 'Groups', to: '/communities', icon: Users }, { label: 'Pledge', to: '/pledges', icon: Megaphone }, ]; diff --git a/src/lib/sidebarItems.tsx b/src/lib/sidebarItems.tsx index 03c0f96b..c3ee2f5d 100644 --- a/src/lib/sidebarItems.tsx +++ b/src/lib/sidebarItems.tsx @@ -193,7 +193,7 @@ export const SIDEBAR_ITEMS: SidebarItemDef[] = [ { id: "emojis", label: "Emojis", path: "/emojis", icon: SmilePlus }, { id: "development", label: "Development", path: "/development", icon: Code }, { id: "badges", label: "Badges", path: "/badges", icon: Award }, - { id: "communities", label: "Organize", path: "/communities", icon: Users }, + { id: "communities", label: "Groups", path: "/communities", icon: Users }, { id: "world", label: "World", path: "/world", icon: Earth }, ]; diff --git a/src/pages/CommunitiesPage.tsx b/src/pages/CommunitiesPage.tsx index 7522d27a..0f22d570 100644 --- a/src/pages/CommunitiesPage.tsx +++ b/src/pages/CommunitiesPage.tsx @@ -363,7 +363,7 @@ function CommunitiesHero({ onCreateCommunity }: CommunitiesHeroProps) {

- Organize + Groups

Strength