aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-07-04 10:50:47 -0500
committerDhravya <[email protected]>2024-07-04 10:50:47 -0500
commit697eafd73de5fea2f8a02d20cacb93d2c20c6c29 (patch)
tree845ea0a76d90c64a840e6ad1224dd4b2d2e66e11
parentbetter-extension (diff)
parentremoved scrollbar (diff)
downloadsupermemory-697eafd73de5fea2f8a02d20cacb93d2c20c6c29.tar.xz
supermemory-697eafd73de5fea2f8a02d20cacb93d2c20c6c29.zip
merged
-rw-r--r--README.md4
-rw-r--r--SETUP-GUIDE.md3
-rw-r--r--apps/web/app/(dash)/chat/chatWindow.tsx2
-rw-r--r--apps/web/app/(landing)/Cta.tsx2
-rw-r--r--apps/web/app/(landing)/footer.tsx10
5 files changed, 12 insertions, 9 deletions
diff --git a/README.md b/README.md
index 0fbe3e85..1fad091b 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-![og image](https://supermemory.dhr.wtf/og-image.png)
+![og image](https://supermemory.ai/og-image.png)
# SuperMemory
@@ -18,7 +18,7 @@ Supermemory fixes this.
## How do I use this?
-Just go to [supermemory.dhr.wtf](https://supermemory.dhr.wtf) and sign in with your google account.
+Just go to [supermemory.ai](https://supermemory.ai) and sign in with your google account.
To use the chrome extension,
diff --git a/SETUP-GUIDE.md b/SETUP-GUIDE.md
index f51b1cb1..1ebff77e 100644
--- a/SETUP-GUIDE.md
+++ b/SETUP-GUIDE.md
@@ -34,6 +34,9 @@ bunx wrangler d1 create <YOUR_DATABASE_NAME>
And then replace database_name and database_id with the values
+> [!NOTE]
+> please don't change the binding value even if wrangler cli suggests you to do so.
+
```
[[d1_databases]]
binding = "DATABASE"
diff --git a/apps/web/app/(dash)/chat/chatWindow.tsx b/apps/web/app/(dash)/chat/chatWindow.tsx
index 7cdf7bbb..e610057d 100644
--- a/apps/web/app/(dash)/chat/chatWindow.tsx
+++ b/apps/web/app/(dash)/chat/chatWindow.tsx
@@ -207,7 +207,7 @@ function ChatWindow({
</motion.div>
) : (
<div
- className="max-w-3xl z-10 mx-auto relative h-full overflow-y-auto no-scrollbar"
+ className="max-w-3xl z-10 mx-auto relative h-full overflow-y-auto scrollbar-none"
key="chat"
>
<div className="w-full pt-24 mb-40 px-4 md:px-0">
diff --git a/apps/web/app/(landing)/Cta.tsx b/apps/web/app/(landing)/Cta.tsx
index 55a2baf0..3aeef255 100644
--- a/apps/web/app/(landing)/Cta.tsx
+++ b/apps/web/app/(landing)/Cta.tsx
@@ -33,7 +33,7 @@ function Cta() {
<p className="z-20 text-center text-md md:text-lg">
Sign up for the waitlist and be the first to try Supermemory
</p>
- <div className="w-full lg:w-3/4 mx-auto">
+ <div className="w-fit lg:w-3/4 mx-auto">
<Link
href="/signin"
className="inline-flex gap-x-2 justify-start items-start py-3 px-5 ml-3 w-full rounded-3xl border duration-200 sm:w-auto group bg-page-gradient border-white/30 text-md font-geistSans hover:border-zinc-600 hover:bg-transparent/10 hover:text-zinc-100 text-white z-[1] relative"
diff --git a/apps/web/app/(landing)/footer.tsx b/apps/web/app/(landing)/footer.tsx
index 48abc048..5ec29f1a 100644
--- a/apps/web/app/(landing)/footer.tsx
+++ b/apps/web/app/(landing)/footer.tsx
@@ -3,16 +3,16 @@ import LinkArrow from "./linkArrow";
function Footer() {
return (
- <footer className="mt-20 flex w-full overflow-y-hidden items-center justify-between gap-4 px-8 py-8 text-sm text-zinc-500 overflow-hidden">
+ <footer className="mt-20 w-full md:flex overflow-y-hidden items-center justify-between gap-4 px-8 py-8 text-sm text-zinc-500 overflow-hidden text-center">
<p>© 2024 Supermemory.ai</p>
- <div className="flex gap-5">
+ <div className="flex gap-5 justify-around my-2">
<a
className="group/mail flex items-center"
target="_blank"
href="mailto:[email protected]"
>
Contact
- <LinkArrow classname="group-hover/mail:opacity-100 opacity-0 transition" />
+ <LinkArrow classname="group-hover/mail:opacity-100 opacity-0 transition hidden md:block" />
</a>
<a
className="group/twit flex items-center"
@@ -20,7 +20,7 @@ function Footer() {
href="https://twitter.com/supermemoryai"
>
Twitter{" "}
- <LinkArrow classname="group-hover/twit:opacity-100 opacity-0 transition" />
+ <LinkArrow classname="group-hover/twit:opacity-100 opacity-0 transition hidden md:block" />
</a>
<a
className="group/git flex items-center"
@@ -28,7 +28,7 @@ function Footer() {
href="https://github.com/dhravya/supermemory"
>
Github{" "}
- <LinkArrow classname="group-hover/git:opacity-100 opacity-0 transition" />
+ <LinkArrow classname="group-hover/git:opacity-100 opacity-0 transition hidden md:block" />
</a>
</div>
</footer>