diff --git a/apps/web/app/onboarding/bio-form.tsx b/apps/web/app/onboarding/bio-form.tsx index 63f359ec..21b0e34b 100644 --- a/apps/web/app/onboarding/bio-form.tsx +++ b/apps/web/app/onboarding/bio-form.tsx @@ -32,7 +32,46 @@ export function BioForm() { } return (
-
+
+
+ + {bio ? ( + + + + ) : ( + + + + )} + +

Step {getStepNumberFor("bio")} of {totalSteps} @@ -53,45 +92,6 @@ export function BioForm() { value={bio} onChange={(e) => setBio(e.target.value)} /> - - {bio ? ( - - - - ) : ( - - - - )} -

) } diff --git a/apps/web/app/onboarding/extension-form.tsx b/apps/web/app/onboarding/extension-form.tsx index 721acb4f..75f84557 100644 --- a/apps/web/app/onboarding/extension-form.tsx +++ b/apps/web/app/onboarding/extension-form.tsx @@ -816,7 +816,7 @@ export function ExtensionForm() { const { totalSteps, nextStep, getStepNumberFor } = useOnboarding() return (
-
+

@@ -827,21 +827,29 @@ export function ExtensionForm() { Install the Chrome extension

- {/* Install the Supermemory extension to start saving and organizing everything that matters. */} Bring Supermemory everywhere

-
+
+ Chrome Add to Chrome @@ -891,17 +899,6 @@ export function ExtensionForm() {
-
- -
) } diff --git a/apps/web/app/onboarding/mcp-form.tsx b/apps/web/app/onboarding/mcp-form.tsx index d3152e42..161642c4 100644 --- a/apps/web/app/onboarding/mcp-form.tsx +++ b/apps/web/app/onboarding/mcp-form.tsx @@ -58,7 +58,46 @@ export function MCPForm() { return (
-
+
+
+ + {!isInstalling ? ( + + + + ) : ( + + + + )} + +

Step {getStepNumberFor("mcp")} of {totalSteps} @@ -207,45 +246,6 @@ export function MCPForm() {

- - {!isInstalling ? ( - - - - ) : ( - - - - )} -
) }