diff --git a/src/components/PrivacyFeatureCard.tsx b/src/components/PrivacyFeatureCard.tsx index 8a02df241..02522d7c1 100644 --- a/src/components/PrivacyFeatureCard.tsx +++ b/src/components/PrivacyFeatureCard.tsx @@ -9,7 +9,7 @@ const PrivacyFeatureCard = ({ title, description }: PrivacyFeatureCardProps) =>

{title}

-

{description}

+

{description}

diff --git a/src/index.css b/src/index.css index 7c67ed73f..8a4d0269f 100644 --- a/src/index.css +++ b/src/index.css @@ -98,7 +98,7 @@ @layer components { /* Button variants for consistent interaction design */ .btn-primary { - @apply bg-primary-500 hover:bg-primary-600 active:bg-primary-700; + @apply bg-primary-600 hover:bg-primary-500 active:bg-primary-700; @apply text-white font-medium; @apply px-4 py-2 rounded-lg; @apply transition-all duration-200 ease-in-out; diff --git a/src/pages/onboarding/steps/AnalyticsStep.tsx b/src/pages/onboarding/steps/AnalyticsStep.tsx index 333f73920..bd78d9918 100644 --- a/src/pages/onboarding/steps/AnalyticsStep.tsx +++ b/src/pages/onboarding/steps/AnalyticsStep.tsx @@ -12,7 +12,7 @@ const AnalyticsStep = ({ onNext }: AnalyticsStepProps) => {

Analytics

- Help us improve your experience while maintaining your privacy + We collect anonymized usage data to help us improve the app for you and for others. You can choose to skip this.

diff --git a/src/pages/onboarding/steps/FeaturesStep.tsx b/src/pages/onboarding/steps/FeaturesStep.tsx index c408ebbf2..15d5ea607 100644 --- a/src/pages/onboarding/steps/FeaturesStep.tsx +++ b/src/pages/onboarding/steps/FeaturesStep.tsx @@ -7,33 +7,25 @@ interface FeaturesStepProps { const FeaturesStep = ({ onNext }: FeaturesStepProps) => { const features = [ { - title: '🤖 Telegram Bot Assistant', - description: 'Interact with AlphaHuman through Telegram. Get instant responses, automate tasks, and receive insights directly in your chats.', + title: 'Keeps you on track', + description: 'Organize your chats and tasks, finds you alpha and gets you deep insights. Get more done!', }, { - title: '📊 Crypto Market Intelligence', - description: 'Get real-time market analysis, price alerts, and deep insights to help you make informed trading decisions.', + title: 'Has Infinite Memory & Learns', + description: 'Your assistant can remember everything you tell it and learn from your interactions to help you get more done.', }, { - title: '🔗 Multi-Account Integration', - description: 'Connect Google, Notion, Telegram, and more. Your assistant can read emails, manage tasks, and automate workflows across all your tools.', - }, - { - title: '⚡ Local Processing', - description: 'All your data is processed locally on your device. Your conversations, credentials, and sensitive information never leave your machine.', - }, - { - title: '🔄 Automation & Workflows', - description: 'Automate repetitive tasks, schedule actions, and create custom workflows to 10x your productivity in crypto.', + title: 'Trades the Trenches', + description: 'Your assistant comes with it\'s own private wallet that can trade on any exchange for you.', }, ]; return (
-

Features

+

Are You Ready For This?

- Discover what AlphaHuman can do for you + Here are a few things that AlphaHuman can do that might surprise you.

@@ -51,7 +43,7 @@ const FeaturesStep = ({ onNext }: FeaturesStepProps) => { onClick={onNext} className="btn-primary w-full py-2.5 text-sm font-medium rounded-xl" > - Continue + Yes I'm Ready. Bring It On 🚀
); diff --git a/src/pages/onboarding/steps/PrivacyStep.tsx b/src/pages/onboarding/steps/PrivacyStep.tsx index adf0cb047..d2e9393e6 100644 --- a/src/pages/onboarding/steps/PrivacyStep.tsx +++ b/src/pages/onboarding/steps/PrivacyStep.tsx @@ -7,25 +7,25 @@ interface PrivacyStepProps { const PrivacyStep = ({ onNext }: PrivacyStepProps) => { const privacyFeatures = [ { - title: '🔒 Client-Side Encryption', - description: 'Your data is encrypted in your browser before it ever reaches our servers. We store only ciphertext. Without your recovery phrase, your content is cryptographically unreadable AES-256-GCM. Keys never leave your device', + title: '🔒 Everything is Local & Encrypted', + description: 'Your data is encrypted (AES-256-GCM) in your device and never stored elsewhere. Your encryption keys never leave your device.', }, { - title: '🙈 Zero Admin Access', - description: 'Even with full database access, Momo admins cannot decrypt your content. Your encryption keys exist only in your browser. We have no mechanism to access them.', + title: '🙈 Zero Data Retention', + description: 'Your queries are processed, immediately discarded and never stored elsewhere. Your data is NEVER used to train AI models. ', }, { - title: '🚫 Zero Data Retention', - description: 'Your data is NEVER used to train AI models. We operate under a Zero Data Retention contract with Anthropic. Your queries are processed and immediately discarded, never stored or used for training.', - }, + title: '🔥 Delete Anytime You Want', + description: 'You can delete your data and your account anytime you want. Everything will get wiped including AI memories.', + } ]; return (
-

Privacy

+

A Quick Privacy Note

- A quick overview of how your privacy is protected with AlphaHuman. AlphaHuman is built with privacy in mind. + Since AlphaHuman handles criticial information about you, here's how it handles your data and manages your privacy.

@@ -43,7 +43,7 @@ const PrivacyStep = ({ onNext }: PrivacyStepProps) => { onClick={onNext} className="btn-primary w-full py-2.5 text-sm font-medium rounded-xl" > - Continue + Love the Privacy first features! Continue!
);