From f0d64e8e973a03306d433fc9efd82e627bf6e8ec Mon Sep 17 00:00:00 2001 From: Steven Enamakel Date: Wed, 28 Jan 2026 02:27:35 +0530 Subject: [PATCH] Update ConnectionIndicator description and refactor Home component styles for improved user experience - Modified the description in the ConnectionIndicator component for clearer messaging. - Refactored button styles in the Home component to enhance visual consistency and user interaction. - Removed the AnalyticsStep component to streamline the onboarding process. These changes aim to improve user clarity and engagement throughout the application. --- src/components/ConnectionIndicator.tsx | 2 +- src/pages/Home.tsx | 10 +- src/pages/onboarding/steps/AnalyticsStep.tsx | 102 ------------------- 3 files changed, 6 insertions(+), 108 deletions(-) delete mode 100644 src/pages/onboarding/steps/AnalyticsStep.tsx diff --git a/src/components/ConnectionIndicator.tsx b/src/components/ConnectionIndicator.tsx index 4ce5fbba2..d64b1e0b7 100644 --- a/src/components/ConnectionIndicator.tsx +++ b/src/components/ConnectionIndicator.tsx @@ -6,7 +6,7 @@ interface ConnectionIndicatorProps { const ConnectionIndicator = ({ status = 'connected', - description = 'Your browser is now connected to the AlphaHuman AI. Keep this tab open to keep the connection alive. You can message the assistant with the button below.', + description = 'Your browser is now connected to the AlphaHuman AI. Keep this tab open to keep the connection alive. You can message your assistant with the button below.', className = '', }: ConnectionIndicatorProps) => { const statusConfig = { diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 2c3a01ab8..de3e48aa1 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -79,11 +79,11 @@ const Home = () => { {/* Action buttons */} -
+
{/* Manage Connections */} -
- ); -}; - -export default AnalyticsStep;