UX: Complete Add Keywords and Sites Management detailed improvements
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.
This commit is contained in:
@@ -662,10 +662,10 @@ export default function IndustriesSectorsKeywords() {
|
|||||||
</div>
|
</div>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
<h3 className="text-sm font-medium text-blue-900 dark:text-blue-200">
|
<h3 className="text-sm font-medium text-blue-900 dark:text-blue-200">
|
||||||
Select a Sector to Add Keywords
|
Choose a Topic Area First
|
||||||
</h3>
|
</h3>
|
||||||
<p className="mt-1 text-sm text-blue-700 dark:text-blue-300">
|
<p className="mt-1 text-sm text-blue-700 dark:text-blue-300">
|
||||||
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
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -275,7 +275,7 @@ export default function SiteList() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const SITE_TYPES = [
|
const SITE_TYPES = [
|
||||||
{ value: '', label: 'All Types' },
|
{ value: '', label: 'Show All Types' },
|
||||||
{ value: 'marketing', label: 'Marketing' },
|
{ value: 'marketing', label: 'Marketing' },
|
||||||
{ value: 'ecommerce', label: 'Ecommerce' },
|
{ value: 'ecommerce', label: 'Ecommerce' },
|
||||||
{ value: 'blog', label: 'Blog' },
|
{ value: 'blog', label: 'Blog' },
|
||||||
@@ -284,7 +284,7 @@ export default function SiteList() {
|
|||||||
];
|
];
|
||||||
|
|
||||||
const HOSTING_TYPES = [
|
const HOSTING_TYPES = [
|
||||||
{ value: '', label: 'All Hosting' },
|
{ value: '', label: 'Show All Hosting' },
|
||||||
{ value: 'igny8_sites', label: 'IGNY8 Sites' },
|
{ value: 'igny8_sites', label: 'IGNY8 Sites' },
|
||||||
{ value: 'wordpress', label: 'WordPress' },
|
{ value: 'wordpress', label: 'WordPress' },
|
||||||
{ value: 'shopify', label: 'Shopify' },
|
{ value: 'shopify', label: 'Shopify' },
|
||||||
@@ -292,7 +292,7 @@ export default function SiteList() {
|
|||||||
];
|
];
|
||||||
|
|
||||||
const STATUS_OPTIONS = [
|
const STATUS_OPTIONS = [
|
||||||
{ value: '', label: 'All Status' },
|
{ value: '', label: 'Show All Status' },
|
||||||
{ value: 'active', label: 'Active' },
|
{ value: 'active', label: 'Active' },
|
||||||
{ value: 'inactive', label: 'Inactive' },
|
{ value: 'inactive', label: 'Inactive' },
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user