diff --git a/apps/web/app/(navigation)/settings/support/page.tsx b/apps/web/app/(navigation)/settings/support/page.tsx
index de4b3c78..7dc2a207 100644
--- a/apps/web/app/(navigation)/settings/support/page.tsx
+++ b/apps/web/app/(navigation)/settings/support/page.tsx
@@ -69,7 +69,7 @@ export default function SupportPage() {
What's included in the Pro plan?
- Pro includes 5,000 memories (vs 200 in free), 10 connections to
+ Pro includes unlimited memories (vs 200 in free), 10 connections to
external services like Google Drive and Notion, advanced search
features, and priority support.
- {/* Supercharge your AI with memory */}
- {/* Supercharge any AI with Supermemory. */}
- {/* ChatGPT is better with Supermemory. */}
- {/* Seamless integration with your workflow */}
-
- {/* Integrates with ChatGPT and Claude. */}
- {/* Integrates with your chat apps */}
- Enhance any prompt with Supermemory.
- {/* Seamlessly */}
-
-
-
-
-
-
-
-
-
Import Twitter bookmarks
-
- Search semantically and effortlessly.
- {/* Import instantly and search effortlessly. */}
-
-
-
-
-
-
-
-
-
- Continue
-
-
-
+
+
+
+
Remember anything, anywhere
+
+ Just right-click to save instantly.
+
- )
-}
\ No newline at end of file
+
+
+
+
+
+
+
Integrate with your AI
+ {/* Supercharge your AI with memory */}
+ {/* Supercharge any AI with Supermemory. */}
+ {/* ChatGPT is better with Supermemory. */}
+ {/* Seamless integration with your workflow */}
+
+ {/* Integrates with ChatGPT and Claude. */}
+ {/* Integrates with your chat apps */}
+ Enhance any prompt with Supermemory.
+ {/* Seamlessly */}
+
+
+
+
+
+
+
+
+
Import Twitter bookmarks
+
+ Search semantically and effortlessly.
+ {/* Import instantly and search effortlessly. */}
+
+
+
+
+
+
+
+
+
+ Continue
+
+
+
+
+ )
+}
diff --git a/apps/web/app/onboarding/intro.tsx b/apps/web/app/onboarding/intro.tsx
index cc242df3..ebf9b471 100644
--- a/apps/web/app/onboarding/intro.tsx
+++ b/apps/web/app/onboarding/intro.tsx
@@ -11,7 +11,7 @@ export function Intro() {
return (
Continue
@@ -238,7 +238,7 @@ export function MCPForm() {
Skip For Now
diff --git a/apps/web/app/onboarding/name-form.tsx b/apps/web/app/onboarding/name-form.tsx
index df734601..018508b1 100644
--- a/apps/web/app/onboarding/name-form.tsx
+++ b/apps/web/app/onboarding/name-form.tsx
@@ -1,11 +1,9 @@
"use client"
-import { Button } from "@repo/ui/components/button"
import { useOnboarding } from "./onboarding-context"
import { useAuth } from "@lib/auth-context"
import Link from "next/link"
import { useEffect, useState } from "react"
-import { Input } from "@ui/components/input"
import { CheckIcon } from "lucide-react"
import { AnimatePresence, motion } from "motion/react"
import { NavMenu } from "./nav-menu"
@@ -20,8 +18,7 @@ export function NameForm() {
if (!name && user?.name) {
setName(user.name)
}
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [user?.name])
+ }, [name, user?.name])
function handleNext(): void {
const trimmed = name.trim()
@@ -51,13 +48,15 @@ export function NameForm() {
}
return (
-