diff --git a/frontend/src/assets/brand/icon.svg b/frontend/src/assets/brand/icon.svg index f0558e0b..80928a1a 100644 --- a/frontend/src/assets/brand/icon.svg +++ b/frontend/src/assets/brand/icon.svg @@ -1,8 +1,8 @@ - - + + diff --git a/frontend/src/assets/brand/logo-horizontal.svg b/frontend/src/assets/brand/logo-horizontal.svg index 394d1bf4..f141714d 100644 --- a/frontend/src/assets/brand/logo-horizontal.svg +++ b/frontend/src/assets/brand/logo-horizontal.svg @@ -1,8 +1,8 @@ - - + + @@ -26,7 +26,7 @@ - + ResolutionFlow diff --git a/frontend/src/assets/brand/logo-with-tagline.svg b/frontend/src/assets/brand/logo-with-tagline.svg index 28b5c811..958d356c 100644 --- a/frontend/src/assets/brand/logo-with-tagline.svg +++ b/frontend/src/assets/brand/logo-with-tagline.svg @@ -1,8 +1,8 @@ - - + + @@ -26,12 +26,12 @@ - + ResolutionFlow - + From issue to resolution, documented. diff --git a/frontend/src/components/dashboard/QuickActions.tsx b/frontend/src/components/dashboard/QuickActions.tsx index 0062a1bb..5a34aa3a 100644 --- a/frontend/src/components/dashboard/QuickActions.tsx +++ b/frontend/src/components/dashboard/QuickActions.tsx @@ -5,7 +5,7 @@ const ACTIONS = [ { icon: Plus, label: 'New Flow', description: 'Create a new flow', href: '/trees/new', color: '#06b6d4' }, { icon: Play, label: 'Resume Session', description: 'Continue where you left off', href: '/sessions', color: '#34d399' }, { icon: BookOpen, label: 'Browse Library', description: 'Explore step library', href: '/step-library', color: '#fbbf24' }, - { icon: UserPlus, label: 'Invite Team', description: 'Add team members', href: '/account', color: '#818cf8' }, + { icon: UserPlus, label: 'Invite Team', description: 'Add team members', href: '/account', color: '#06b6d4' }, ] as const export function QuickActions() { diff --git a/frontend/src/components/dashboard/RecentActivity.tsx b/frontend/src/components/dashboard/RecentActivity.tsx index 157b592a..b175f085 100644 --- a/frontend/src/components/dashboard/RecentActivity.tsx +++ b/frontend/src/components/dashboard/RecentActivity.tsx @@ -18,7 +18,7 @@ const DEFAULT_ACTIVITIES: ActivityItem[] = [ { id: '1', icon: Play, iconColor: '#34d399', iconBg: 'rgba(52, 211, 153, 0.1)', description: 'Started VPN Connectivity Triage session', timestamp: '2 min ago' }, { id: '2', icon: CheckCircle, iconColor: '#06b6d4', iconBg: 'rgba(6, 182, 212, 0.1)', description: 'Completed M365 License Provisioning', timestamp: '15 min ago' }, { id: '3', icon: Edit, iconColor: '#fbbf24', iconBg: 'rgba(251, 191, 36, 0.1)', description: 'Updated Printer Troubleshooting flow', timestamp: '1 hr ago' }, - { id: '4', icon: GitBranch, iconColor: '#818cf8', iconBg: 'rgba(129, 140, 248, 0.1)', description: 'Created new DNS Resolution flow', timestamp: '3 hr ago' }, + { id: '4', icon: GitBranch, iconColor: '#06b6d4', iconBg: 'rgba(6, 182, 212, 0.1)', description: 'Created new DNS Resolution flow', timestamp: '3 hr ago' }, { id: '5', icon: FileText, iconColor: '#8891a0', iconBg: 'rgba(136, 145, 160, 0.1)', description: 'Exported session report #TK-4821', timestamp: 'Yesterday' }, ] diff --git a/frontend/src/components/layout/QuickLaunch.tsx b/frontend/src/components/layout/QuickLaunch.tsx index 11337487..8e2a3090 100644 --- a/frontend/src/components/layout/QuickLaunch.tsx +++ b/frontend/src/components/layout/QuickLaunch.tsx @@ -25,7 +25,7 @@ const ACTIONS: QuickAction[] = [ { id: 'new-project', icon: Plus, label: 'New Project', description: 'Create a step-by-step project', path: '/flows/new', color: '#8b5cf6' }, { id: 'sessions', icon: Play, label: 'View Sessions', description: 'See active and recent sessions', path: '/sessions', color: '#f59e0b' }, { id: 'step-library', icon: Bookmark, label: 'Step Library', description: 'Browse reusable steps', path: '/step-library', color: '#10b981' }, - { id: 'exports', icon: FileText, label: 'Exports & Shares', description: 'View shared session exports', path: '/shares', color: '#6366f1' }, + { id: 'exports', icon: FileText, label: 'Exports & Shares', description: 'View shared session exports', path: '/shares', color: '#06b6d4' }, { id: 'team', icon: Users, label: 'Team Settings', description: 'Manage team members and roles', path: '/account', color: '#ec4899' }, ]