diff --git a/src/onboarding/components/CompletionScreen.tsx b/src/onboarding/components/CompletionScreen.tsx index eb6e60b8..d35964b6 100644 --- a/src/onboarding/components/CompletionScreen.tsx +++ b/src/onboarding/components/CompletionScreen.tsx @@ -67,7 +67,25 @@ export function CompletionScreen() { You're All Set! 🎉

- Thank you for downloading BrowserOS! Join our discord or slack community to provide feedback and suggest new features! + Thank you for downloading BrowserOS! Join our{' '} + + Discord + {' '} + or{' '} + + Slack + {' '} + community to provide feedback and suggest new features!

@@ -77,13 +95,13 @@ export function CompletionScreen() { onClick={handleOpenSidePanel} className="px-10 py-4 bg-gradient-to-r from-brand to-orange-500 hover:from-brand/90 hover:to-orange-500/90 text-white font-bold rounded-xl transition-all duration-300 shadow-lg shadow-brand/25 hover:shadow-xl hover:shadow-brand/40 hover:scale-105 active:scale-95" > - Open AI Agent Panel + Open BrowserOS agent diff --git a/src/onboarding/components/StepThree.tsx b/src/onboarding/components/StepThree.tsx index 1b23aaef..c3747e12 100644 --- a/src/onboarding/components/StepThree.tsx +++ b/src/onboarding/components/StepThree.tsx @@ -14,7 +14,7 @@ export function StepThree() { url: 'https://news.google.com', clickable: true, icon: ( - + + + - ), - gradient: 'from-purple-500 to-purple-600', - bgGradient: 'from-purple-500/10 to-purple-600/10', - hoverBorder: 'hover:border-purple-500/60' + ) }, { id: 'mcp-server', @@ -75,7 +72,7 @@ export function StepThree() { query: '(in claude code) "Open LinkedIn.com and extract all my connections and give it as a table"', clickable: false, icon: ( - + - ), - gradient: 'from-green-500 to-green-600', - bgGradient: 'from-green-500/10 to-green-600/10', - hoverBorder: 'hover:border-green-500/60' + ) + }, + { + id: 'split-view', + title: 'Split-View AI on Any Page', + description: 'Open ChatGPT, Claude, or Gemini alongside any website. Get help while you work — summarize articles, draft responses, or analyze data without switching tabs.', + query: '', + clickable: false, + icon: ( + + + + + ) + }, + { + id: 'private-default', + title: 'Private by Default', + description: 'Run AI locally with Ollama or bring your own API keys. Your data never leaves your machine unless you choose.', + query: '', + clickable: false, + icon: ( + + + + + ) } ] @@ -147,18 +187,14 @@ export function StepThree() { Experience the AI Agent

- BrowserOS comes with a built-in AI agent that can execute complex web tasks! Try the below features + BrowserOS comes with a built-in AI agent that can execute complex web tasks!

{/* Try These Examples Section */}
-
-

- ✨ - Try These Examples -

-

Click on the first two cards to see the agent in action

+
+

Try These Examples

@@ -225,46 +261,38 @@ export function StepThree() { {/* Additional Features Section */}
-
- {exampleQueries.filter(ex => !ex.clickable).map((example, index) => ( +
+ ✨ +

More Features!

+
+ +
+ {exampleQueries.filter(ex => !ex.clickable).map(example => (
- {/* Icon & Title */} -
-
- {example.icon} -
-
-

{example.title}

-

- {example.description} -

-
+
+ {example.icon}
- - {/* Example */} -
-

Example:

-
-

- {example.query} +

+

+ {example.title} +

+

+ {example.description} +

+ {example.query && ( +

+ {example.id === 'teach-mode' || example.id === 'mcp-server' ? `Example: ${example.query}` : example.query}

-
+ )}
))}
- {/* Help Text */} -
-

- 💡 Tip: Click on the first two cards to try them live. The AI agent panel will open showing the execution in real-time -

-
- {/* Navigation - Glass morphism style */}