From 74930d623f6f276dcac49ea1ec2b2b7bd75d5886 Mon Sep 17 00:00:00 2001 From: michael Date: Thu, 8 Jan 2026 10:02:28 -0600 Subject: [PATCH] Replace agent icons with clean Heroicons Replaced custom AI-generated icons with standard Heroicons for a more professional appearance on the home page. Co-Authored-By: Claude Opus 4.5 --- frontend/components/icons/BarclaysLogo.tsx | 7 +++++-- frontend/components/icons/BrandIcon.tsx | 4 ++-- frontend/components/icons/ChannelIcon.tsx | 4 ++-- frontend/components/icons/LeadAgentIcon.tsx | 5 +++-- frontend/components/icons/LegalIcon.tsx | 4 ++-- 5 files changed, 14 insertions(+), 10 deletions(-) diff --git a/frontend/components/icons/BarclaysLogo.tsx b/frontend/components/icons/BarclaysLogo.tsx index 88b6574..4c3cc0e 100755 --- a/frontend/components/icons/BarclaysLogo.tsx +++ b/frontend/components/icons/BarclaysLogo.tsx @@ -1,13 +1,16 @@ import React from 'react'; +// Shield with checkmark - Heroicons "shield-check" (outline) export const BarclaysLogo: React.FC> = (props) => ( - + ); diff --git a/frontend/components/icons/BrandIcon.tsx b/frontend/components/icons/BrandIcon.tsx index f2816e8..4f468af 100755 --- a/frontend/components/icons/BrandIcon.tsx +++ b/frontend/components/icons/BrandIcon.tsx @@ -1,8 +1,8 @@ - import React from 'react'; +// Swatch icon - Heroicons "swatch" (outline) - represents brand/visual identity export const BrandIcon: React.FC> = (props) => ( - + ); diff --git a/frontend/components/icons/ChannelIcon.tsx b/frontend/components/icons/ChannelIcon.tsx index a7107f5..a0ff486 100755 --- a/frontend/components/icons/ChannelIcon.tsx +++ b/frontend/components/icons/ChannelIcon.tsx @@ -1,8 +1,8 @@ - import React from 'react'; +// Device phone/tablet icon - Heroicons "device-phone-mobile" (outline) - represents channels/platforms export const ChannelIcon: React.FC> = (props) => ( - + ); diff --git a/frontend/components/icons/LeadAgentIcon.tsx b/frontend/components/icons/LeadAgentIcon.tsx index 1ef2723..c289936 100755 --- a/frontend/components/icons/LeadAgentIcon.tsx +++ b/frontend/components/icons/LeadAgentIcon.tsx @@ -1,8 +1,9 @@ import React from 'react'; +// CPU/Chip icon - Heroicons "cpu-chip" (outline) - represents the AI orchestrator export const LeadAgentIcon: React.FC> = (props) => ( - - + + ); diff --git a/frontend/components/icons/LegalIcon.tsx b/frontend/components/icons/LegalIcon.tsx index cd31635..4f1e678 100755 --- a/frontend/components/icons/LegalIcon.tsx +++ b/frontend/components/icons/LegalIcon.tsx @@ -1,8 +1,8 @@ - import React from 'react'; +// Scale/Balance icon - Heroicons "scale" (outline) - represents legal/compliance export const LegalIcon: React.FC> = (props) => ( - + );