UX: Update Dashboard and Sidebar navigation with user-friendly text

- Dashboard: Changed title to 'Your Content Creation Dashboard'
- Dashboard: Updated 'Your Progress' to 'Your Content Journey'
- Dashboard: Improved metric card descriptions for clarity
- Dashboard: Simplified Quick Action labels (Find Keywords, Organize Topics, etc.)
- Sidebar: Updated section headers (GET STARTED, CREATE CONTENT, PREFERENCES, SUPPORT)
- Sidebar: Changed menu labels (Find Keywords, Your Websites, Organize Keywords, Create Content)
- Sidebar: Renamed 'Help & Documentation' to 'Help Center'
This commit is contained in:
IGNY8 VPS (Salman)
2025-12-25 08:48:35 +00:00
parent 2d4767530d
commit ebf6a9f27a
2 changed files with 28 additions and 28 deletions

View File

@@ -66,7 +66,7 @@ const AppSidebar: React.FC = () => {
const setupItems: NavItem[] = [
{
icon: <DocsIcon />,
name: "Add Keywords",
name: "Find Keywords",
path: "/setup/add-keywords",
},
];
@@ -75,7 +75,7 @@ const AppSidebar: React.FC = () => {
if (isModuleEnabled('site_builder')) {
setupItems.push({
icon: <GridIcon />,
name: "Sites",
name: "Your Websites",
path: "/sites", // Submenus shown as in-page navigation
});
}
@@ -84,7 +84,7 @@ const AppSidebar: React.FC = () => {
if (isModuleEnabled('thinker')) {
setupItems.push({
icon: <BoltIcon />,
name: "Thinker",
name: "Content Strategy",
path: "/thinker/prompts", // Default to prompts, submenus shown as in-page navigation
});
}
@@ -96,7 +96,7 @@ const AppSidebar: React.FC = () => {
if (isModuleEnabled('planner')) {
workflowItems.push({
icon: <ListIcon />,
name: "Planner",
name: "Organize Keywords",
path: "/planner/keywords", // Default to keywords, submenus shown as in-page navigation
});
}
@@ -105,7 +105,7 @@ const AppSidebar: React.FC = () => {
if (isModuleEnabled('writer')) {
workflowItems.push({
icon: <TaskIcon />,
name: "Writer",
name: "Create Content",
path: "/writer/tasks", // Default to tasks, submenus shown as in-page navigation
});
}
@@ -150,11 +150,11 @@ const AppSidebar: React.FC = () => {
],
},
{
label: "SETUP",
label: "GET STARTED",
items: setupItems,
},
{
label: "WORKFLOW",
label: "CREATE CONTENT",
items: workflowItems,
},
{
@@ -183,7 +183,7 @@ const AppSidebar: React.FC = () => {
],
},
{
label: "SETTINGS",
label: "PREFERENCES",
items: [
{
icon: <UserCircleIcon />,
@@ -208,11 +208,11 @@ const AppSidebar: React.FC = () => {
],
},
{
label: "HELP & DOCS",
label: "SUPPORT",
items: [
{
icon: <DocsIcon />,
name: "Help & Documentation",
name: "Help Center",
path: "/help",
},
],