From d21b5b136374dfae83cc9b0fd0550386f4496ce9 Mon Sep 17 00:00:00 2001 From: "IGNY8 VPS (Salman)" Date: Thu, 25 Dec 2025 09:54:21 +0000 Subject: [PATCH] UX: Complete Add Keywords and Sites Management detailed improvements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ADD KEYWORDS PAGE: - Sector selection banner: 'Select a Sector to Add Keywords' → 'Choose a Topic Area First' - Description: Updated to be more conversational and helpful - Changed: 'Please select a sector from the dropdown above to enable adding keywords to your workflow. Keywords must be added to a specific sector.' - To: 'Pick a topic area first, then add keywords - You need to choose what you're writing about before adding search terms to target' SITES MANAGEMENT PAGE: - Filter labels made more conversational: - 'All Types' → 'Show All Types' - 'All Hosting' → 'Show All Hosting' - 'All Status' → 'Show All Status' These changes complete the detailed text improvements from Sections 2 and 3 of the UX plan. --- frontend/src/pages/Setup/IndustriesSectorsKeywords.tsx | 4 ++-- frontend/src/pages/Sites/List.tsx | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/pages/Setup/IndustriesSectorsKeywords.tsx b/frontend/src/pages/Setup/IndustriesSectorsKeywords.tsx index a8a7fed1..76d6ef45 100644 --- a/frontend/src/pages/Setup/IndustriesSectorsKeywords.tsx +++ b/frontend/src/pages/Setup/IndustriesSectorsKeywords.tsx @@ -662,10 +662,10 @@ export default function IndustriesSectorsKeywords() {

- Select a Sector to Add Keywords + Choose a Topic Area First

- Please select a sector from the dropdown above to enable adding keywords to your workflow. Keywords must be added to a specific sector. + Pick a topic area first, then add keywords - You need to choose what you're writing about before adding search terms to target

diff --git a/frontend/src/pages/Sites/List.tsx b/frontend/src/pages/Sites/List.tsx index 0b25cd88..d7d193dc 100644 --- a/frontend/src/pages/Sites/List.tsx +++ b/frontend/src/pages/Sites/List.tsx @@ -275,7 +275,7 @@ export default function SiteList() { }; const SITE_TYPES = [ - { value: '', label: 'All Types' }, + { value: '', label: 'Show All Types' }, { value: 'marketing', label: 'Marketing' }, { value: 'ecommerce', label: 'Ecommerce' }, { value: 'blog', label: 'Blog' }, @@ -284,7 +284,7 @@ export default function SiteList() { ]; const HOSTING_TYPES = [ - { value: '', label: 'All Hosting' }, + { value: '', label: 'Show All Hosting' }, { value: 'igny8_sites', label: 'IGNY8 Sites' }, { value: 'wordpress', label: 'WordPress' }, { value: 'shopify', label: 'Shopify' }, @@ -292,7 +292,7 @@ export default function SiteList() { ]; const STATUS_OPTIONS = [ - { value: '', label: 'All Status' }, + { value: '', label: 'Show All Status' }, { value: 'active', label: 'Active' }, { value: 'inactive', label: 'Inactive' }, ];